fix(mxl-compile): формат по умолчанию — последняя запись палитры

Мы регистрировали формат по умолчанию первым, из-за чего вся палитра шла
со сдвигом относительно платформенной. На корпусе он последний в 8285 макетах
из 10 863, первым — в 25.

Подтверждено контролируемым стендом: в макетах, где ширины заданы на уровне
документа, палитра идёт «ширины колонок в порядке колонок, умолчание последним».

Порядок палитры не виден в семантическом диффе (правило palette-index разрешает
ссылки и тем самым его прячет), поэтому мерялся отдельно: на пилоте совпавших
с оригиналом записей с начала палитры стало 467 из 2274 против 23, палитр,
совпавших целиком, — 4 против 2.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Nick Shirokov
2026-08-11 19:23:18 +03:00
co-authored by Claude Opus 5
parent 250ec9ef0d
commit 3f80f936ae
29 changed files with 358 additions and 348 deletions
@@ -1,4 +1,4 @@
# mxl-compile v1.33 — Compile 1C spreadsheet from JSON
# mxl-compile v1.34 — Compile 1C spreadsheet from JSON
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
param(
[Parameter(Mandatory)]
@@ -731,7 +731,9 @@ function Register-Format {
}
# 6a. Default width format
$defaultFormatIndex = Register-Format @{ width = $defaultWidth }
# Формат по умолчанию платформа кладёт в палитру ПОСЛЕДНИМ: на корпусе он последний
# в 8285 макетах из 10 863, первым — в 25. Поэтому регистрируем его после всех остальных,
# уже за пре-проходом; здесь только запоминаем ширину.
# 6b. Column formats — по одной карте на каждую колоночную раскладку.
# У колонки бывает и ширина, и оформление: формат один, свойства складываются.
@@ -1016,6 +1018,9 @@ foreach ($area in $def.areas) {
}
}
# Формат по умолчанию — последняя запись палитры (см. выше).
$defaultFormatIndex = Register-Format @{ width = $defaultWidth }
# --- 7. Generate XML ---
$xml = New-Object System.Text.StringBuilder 4096
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# mxl-compile v1.33 — Compile 1C spreadsheet from JSON
# mxl-compile v1.34 — Compile 1C spreadsheet from JSON
# Source: https://github.com/Nikolay-Shirokov/cc-1c-skills
import argparse
import hashlib
@@ -808,7 +808,9 @@ def main():
return format_order.index(key) + 1
# 6a. Default width format
default_format_index = register_format({'width': default_width})
# Формат по умолчанию платформа кладёт в палитру ПОСЛЕДНИМ: на корпусе он последний
# в 8285 макетах из 10 863, первым — в 25. Поэтому регистрируем его после всех остальных,
# уже за пре-проходом; здесь только запоминаем ширину.
# 6b. Column formats — по одной карте на каждую колоночную раскладку.
# У колонки бывает и ширина, и оформление: формат один, свойства складываются.
@@ -1039,6 +1041,9 @@ def main():
ft = get_fill_type(cell)
register_cell_format(cell_style, ft)
# Формат по умолчанию — последняя запись палитры (см. выше).
default_format_index = register_format({'width': default_width})
# --- 7. Generate XML ---
lines = []
@@ -14,19 +14,19 @@
<columnsItem>
<index>0</index>
<column>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>1</index>
<column>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>2</index>
<column>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
</column>
</columnsItem>
</columns>
@@ -36,19 +36,19 @@
<columnsItem>
<index>0</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>1</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>2</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
</columns>
@@ -96,26 +96,26 @@
<columnsID>12320174-2b07-3806-9f7f-ec3834007fdb</columnsID>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>Товар</parameter>
</c>
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>Кол</parameter>
</c>
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>Сумма</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>4</defaultFormatIndex>
<height>2</height>
<vgRows>2</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -139,9 +139,6 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<width>20</width>
</format>
@@ -152,4 +149,7 @@
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -14,25 +14,25 @@
<columnsItem>
<index>0</index>
<column>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>1</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>2</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>3</index>
<column>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
</column>
</columnsItem>
</columns>
@@ -42,19 +42,19 @@
<columnsItem>
<index>0</index>
<column>
<formatIndex>5</formatIndex>
<formatIndex>4</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>1</index>
<column>
<formatIndex>6</formatIndex>
<formatIndex>5</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>2</index>
<column>
<formatIndex>6</formatIndex>
<formatIndex>5</formatIndex>
</column>
</columnsItem>
</columns>
@@ -80,26 +80,26 @@
<columnsID>01f06d2d-2103-3169-8cc8-32872f100129</columnsID>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Код</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Имя</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Сумма</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>7</defaultFormatIndex>
<height>2</height>
<vgRows>2</vgRows>
<merge>
@@ -129,9 +129,6 @@
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>20</width>
</format>
<format>
<width>30</width>
<horizontalAlignment>Center</horizontalAlignment>
@@ -153,4 +150,7 @@
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<width>20</width>
</format>
</document>
@@ -14,47 +14,47 @@
<columnsItem>
<index>0</index>
<column>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>1</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>2</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>3</index>
<column>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>4</index>
<column>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
</column>
</columnsItem>
<columnsItem>
<index>5</index>
<column>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
</column>
</columnsItem>
</columns>
<rowsItem>
<index>0</index>
<row>
<formatIndex>5</formatIndex>
<formatIndex>4</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -65,7 +65,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -76,7 +76,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -87,7 +87,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -98,7 +98,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -109,7 +109,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -121,7 +121,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>6</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -138,9 +138,6 @@
<v8ui:style xsi:type="v8ui:SpreadsheetDocumentCellLineType">Solid</v8ui:style>
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>20</width>
</format>
<format>
<width>10</width>
</format>
@@ -157,4 +154,7 @@
<font>0</font>
<border>0</border>
</format>
<format>
<width>20</width>
</format>
</document>
@@ -17,7 +17,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -38,29 +38,29 @@
<rowsItem>
<index>3</index>
<row>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
<c>
<c>
<f>5</f>
<f>4</f>
<parameter>Код</parameter>
</c>
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<parameter>Имя</parameter>
</c>
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<parameter>Значение</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>5</defaultFormatIndex>
<height>4</height>
<vgRows>4</vgRows>
<merge>
@@ -93,9 +93,6 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="12" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>1</font>
<horizontalAlignment>Center</horizontalAlignment>
@@ -112,4 +109,7 @@
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -17,7 +17,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -28,7 +28,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -40,7 +40,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>3</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -56,13 +56,13 @@
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="8.3" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="11.3" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>2</font>
</format>
<format>
<font>1</font>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -15,10 +15,10 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -29,7 +29,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -40,7 +40,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -51,7 +51,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -65,35 +65,35 @@
<rowsItem>
<index>1</index>
<row>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Дата</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Товар</parameter>
</c>
</c>
<c>
<c>
<f>8</f>
<f>7</f>
<parameter>Количество</parameter>
</c>
</c>
<c>
<c>
<f>8</f>
<f>7</f>
<parameter>Цена</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>8</defaultFormatIndex>
<height>2</height>
<vgRows>2</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -120,9 +120,6 @@
<v8ui:style xsi:type="v8ui:SpreadsheetDocumentCellLineType">Solid</v8ui:style>
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<border>0</border>
<horizontalAlignment>Center</horizontalAlignment>
@@ -168,4 +165,7 @@
</v8:item>
</format>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -15,10 +15,10 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -29,7 +29,7 @@
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -41,7 +41,7 @@
<c>
<i>3</i>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -55,11 +55,11 @@
<rowsItem>
<index>1</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<i>1</i>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -70,7 +70,7 @@
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -84,35 +84,35 @@
<rowsItem>
<index>2</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Номер</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Наименование</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Артикул</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Итого</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>7</defaultFormatIndex>
<height>3</height>
<vgRows>3</vgRows>
<merge>
@@ -157,9 +157,6 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="12" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<border>0</border>
</format>
@@ -188,4 +185,7 @@
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -15,10 +15,10 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>3</f>
<f>2</f>
<parameter>ТекстЗаголовка</parameter>
</c>
</c>
@@ -27,10 +27,10 @@
<rowsItem>
<index>1</index>
<row>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
<c>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -41,7 +41,7 @@
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -52,7 +52,7 @@
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -63,7 +63,7 @@
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -77,29 +77,29 @@
<rowsItem>
<index>2</index>
<row>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>НомерСтроки</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Товар</parameter>
<detailParameter>Номенклатура</detailParameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Количество</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Сумма</parameter>
</c>
</c>
@@ -111,7 +111,7 @@
<c>
<i>2</i>
<c>
<f>8</f>
<f>7</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -122,14 +122,14 @@
</c>
<c>
<c>
<f>9</f>
<f>8</f>
<parameter>Всего</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>9</defaultFormatIndex>
<height>4</height>
<vgRows>4</vgRows>
<merge>
@@ -183,9 +183,6 @@
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="14" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>30</width>
</format>
<format>
<height>20</height>
</format>
@@ -223,4 +220,7 @@
<horizontalAlignment>Right</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
<format>
<width>30</width>
</format>
</document>
@@ -66,32 +66,32 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>П1</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>П2</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>П3</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>П4</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>2</defaultFormatIndex>
<height>2</height>
<vgRows>2</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -135,11 +135,11 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -17,7 +17,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -28,7 +28,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -44,7 +44,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -55,7 +55,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -69,29 +69,29 @@
<rowsItem>
<index>2</index>
<row>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Позиция</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Товар</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Цена</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>6</defaultFormatIndex>
<height>3</height>
<vgRows>3</vgRows>
<merge>
@@ -129,9 +129,6 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>1</font>
</format>
@@ -151,4 +148,7 @@
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -15,7 +15,7 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>0</f>
@@ -32,10 +32,10 @@
<rowsItem>
<index>1</index>
<row>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -46,12 +46,12 @@
</c>
<c>
<c>
<f>4</f>
<f>3</f>
</c>
</c>
<c>
<c>
<f>4</f>
<f>3</f>
</c>
</c>
</row>
@@ -59,7 +59,7 @@
<rowsItem>
<index>2</index>
<row>
<formatIndex>5</formatIndex>
<formatIndex>4</formatIndex>
<c>
<c>
<f>0</f>
@@ -78,7 +78,7 @@
<row>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -89,18 +89,18 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>6</defaultFormatIndex>
<height>4</height>
<vgRows>4</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -118,9 +118,6 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>20</width>
</format>
<format>
<height>20</height>
<hidden>true</hidden>
@@ -139,4 +136,7 @@
<font>0</font>
<border>0</border>
</format>
<format>
<width>20</width>
</format>
</document>
@@ -84,32 +84,32 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Вид</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Нач</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Кон</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Итог</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>2</defaultFormatIndex>
<height>3</height>
<vgRows>3</vgRows>
<merge>
@@ -140,11 +140,11 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -66,20 +66,20 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Товар</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Кол</parameter>
</c>
</c>
<c>
<i>3</i>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -91,7 +91,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>3</defaultFormatIndex>
<height>2</height>
<vgRows>2</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -108,9 +108,6 @@
<v8ui:style xsi:type="v8ui:SpreadsheetDocumentCellLineType">Solid</v8ui:style>
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Parameter</fillType>
@@ -120,4 +117,7 @@
<border>0</border>
<horizontalAlignment>Center</horizontalAlignment>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -17,7 +17,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -33,7 +33,7 @@
<row>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -44,7 +44,7 @@
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -55,13 +55,13 @@
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<parameter>Скрытое</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -73,7 +73,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>6</defaultFormatIndex>
<height>2</height>
<vgRows>2</vgRows>
<merge>
@@ -115,9 +115,6 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>20</width>
</format>
<format>
<font>1</font>
<horizontalAlignment>Center</horizontalAlignment>
@@ -150,4 +147,7 @@
<font>0</font>
<border>3</border>
</format>
<format>
<width>20</width>
</format>
</document>
@@ -15,10 +15,10 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -34,7 +34,7 @@
<row>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -46,7 +46,7 @@
<c>
<i>2</i>
<c>
<f>5</f>
<f>4</f>
<parameter>Поставщик</parameter>
</c>
</c>
@@ -55,10 +55,10 @@
<rowsItem>
<index>2</index>
<row>
<formatIndex>6</formatIndex>
<formatIndex>5</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -69,7 +69,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -80,7 +80,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -91,7 +91,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -102,7 +102,7 @@
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -116,34 +116,34 @@
<rowsItem>
<index>3</index>
<row>
<formatIndex>7</formatIndex>
<formatIndex>6</formatIndex>
<c>
<c>
<f>9</f>
<f>8</f>
<parameter>НомерСтроки</parameter>
</c>
</c>
<c>
<c>
<f>10</f>
<f>9</f>
<parameter>Товар</parameter>
</c>
</c>
<c>
<c>
<f>11</f>
<f>10</f>
<parameter>Количество</parameter>
</c>
</c>
<c>
<c>
<f>11</f>
<f>10</f>
<parameter>Цена</parameter>
</c>
</c>
<c>
<c>
<f>11</f>
<f>10</f>
<parameter>Сумма</parameter>
</c>
</c>
@@ -155,7 +155,7 @@
<c>
<i>3</i>
<c>
<f>12</f>
<f>11</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -166,7 +166,7 @@
</c>
<c>
<c>
<f>13</f>
<f>12</f>
<parameter>Всего</parameter>
</c>
</c>
@@ -177,7 +177,7 @@
<row>
<c>
<c>
<f>14</f>
<f>13</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -189,7 +189,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>14</defaultFormatIndex>
<height>6</height>
<vgRows>6</vgRows>
<merge>
@@ -284,9 +284,6 @@
<font faceName="Times New Roman" height="14" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="8" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="false" italic="false" underline="true" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>25</width>
</format>
<format>
<height>25</height>
</format>
@@ -346,4 +343,7 @@
<font>4</font>
<horizontalAlignment>Center</horizontalAlignment>
</format>
<format>
<width>25</width>
</format>
</document>
@@ -43,7 +43,7 @@
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -59,7 +59,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>2</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -73,11 +73,11 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Template</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -71,26 +71,26 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>П1</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>П2</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>П3</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>2</defaultFormatIndex>
<height>3</height>
<vgRows>3</vgRows>
<merge>
@@ -119,11 +119,11 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -15,10 +15,10 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -29,7 +29,7 @@
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -43,11 +43,11 @@
<rowsItem>
<index>1</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<i>1</i>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -58,7 +58,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -70,7 +70,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>4</defaultFormatIndex>
<height>2</height>
<vgRows>2</vgRows>
<merge>
@@ -99,9 +99,6 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="12" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<border>0</border>
</format>
@@ -114,4 +111,7 @@
<border>0</border>
<horizontalAlignment>Center</horizontalAlignment>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -15,10 +15,10 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>3</f>
<f>2</f>
<parameter>Заголовок</parameter>
</c>
</c>
@@ -27,28 +27,28 @@
<rowsItem>
<index>1</index>
<row>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Номер</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Товар</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Количество</parameter>
</c>
</c>
<c>
<c>
<f>7</f>
<f>6</f>
<parameter>Сумма</parameter>
</c>
</c>
@@ -60,7 +60,7 @@
<c>
<i>2</i>
<c>
<f>8</f>
<f>7</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -71,14 +71,14 @@
</c>
<c>
<c>
<f>9</f>
<f>8</f>
<parameter>Всего</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>9</defaultFormatIndex>
<height>3</height>
<vgRows>3</vgRows>
<merge>
@@ -121,9 +121,6 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>30</width>
</format>
<format>
<height>20</height>
</format>
@@ -160,4 +157,7 @@
<horizontalAlignment>Right</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
<format>
<width>30</width>
</format>
</document>
@@ -17,7 +17,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -28,7 +28,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -39,7 +39,7 @@
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -51,7 +51,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>4</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -70,9 +70,6 @@
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="false" italic="true" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>1</font>
<border>0</border>
@@ -86,4 +83,7 @@
<font>0</font>
<border>0</border>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -28,7 +28,7 @@
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -40,7 +40,7 @@
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>2</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -54,11 +54,11 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Template</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -17,7 +17,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>ТекстЗаголовка</parameter>
</c>
</c>
@@ -40,7 +40,7 @@
<c>
<i>2</i>
<c>
<f>2</f>
<f>1</f>
<parameter>ПредставлениеПоставщика</parameter>
<detailParameter>Поставщик</detailParameter>
</c>
@@ -50,35 +50,35 @@
<rowsItem>
<index>2</index>
<row>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
<c>
<c>
<f>5</f>
<f>4</f>
<parameter>НомерСтроки</parameter>
</c>
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<parameter>Товар</parameter>
<detailParameter>Номенклатура</detailParameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Количество</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Цена</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Сумма</parameter>
</c>
</c>
@@ -90,7 +90,7 @@
<c>
<i>3</i>
<c>
<f>7</f>
<f>6</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -101,14 +101,14 @@
</c>
<c>
<c>
<f>8</f>
<f>7</f>
<parameter>Всего</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>8</defaultFormatIndex>
<height>4</height>
<vgRows>4</vgRows>
<merge>
@@ -171,40 +171,40 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<font>0</font>
<border>0</border>
<horizontalAlignment>Right</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
<format>
<font>1</font>
<topBorder>0</topBorder>
<horizontalAlignment>Right</horizontalAlignment>
</format>
<format>
<font>1</font>
<topBorder>0</topBorder>
<horizontalAlignment>Right</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<font>0</font>
<border>0</border>
<horizontalAlignment>Right</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
<format>
<font>1</font>
<topBorder>0</topBorder>
<horizontalAlignment>Right</horizontalAlignment>
</format>
<format>
<font>1</font>
<topBorder>0</topBorder>
<horizontalAlignment>Right</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
</document>
@@ -15,30 +15,30 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>НомерСтроки</parameter>
</c>
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>Товар</parameter>
<detailParameter>Номенклатура</detailParameter>
</c>
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>Сумма</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>4</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -55,9 +55,6 @@
<v8ui:style xsi:type="v8ui:SpreadsheetDocumentCellLineType">Solid</v8ui:style>
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<border>0</border>
</format>
@@ -70,4 +67,7 @@
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -17,20 +17,20 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Ключ</parameter>
</c>
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Значение</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>2</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -44,11 +44,11 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -28,7 +28,7 @@
</c>
<c>
<c>
<f>2</f>
<f>1</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -82,26 +82,26 @@
<row>
<c>
<c>
<f>3</f>
<f>2</f>
<parameter>Код</parameter>
</c>
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<parameter>Наименование</parameter>
</c>
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<parameter>Сумма</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>3</defaultFormatIndex>
<height>3</height>
<vgRows>3</vgRows>
<merge>
@@ -140,9 +140,6 @@
</area>
</namedItem>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<font>0</font>
<fillType>Template</fillType>
@@ -151,4 +148,7 @@
<font>0</font>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>
@@ -17,7 +17,7 @@
<row>
<c>
<c>
<f>2</f>
<f>1</f>
<parameter>Заголовок</parameter>
</c>
</c>
@@ -26,10 +26,10 @@
<rowsItem>
<index>1</index>
<row>
<formatIndex>3</formatIndex>
<formatIndex>2</formatIndex>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -40,7 +40,7 @@
</c>
<c>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -52,7 +52,7 @@
<c>
<i>3</i>
<c>
<f>3</f>
<f>2</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -66,11 +66,11 @@
<rowsItem>
<index>2</index>
<row>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
<c>
<i>1</i>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -81,7 +81,7 @@
</c>
<c>
<c>
<f>5</f>
<f>4</f>
<tl>
<v8:item>
<v8:lang>ru</v8:lang>
@@ -95,35 +95,35 @@
<rowsItem>
<index>3</index>
<row>
<formatIndex>4</formatIndex>
<formatIndex>3</formatIndex>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Номер</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Имя</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Код</parameter>
</c>
</c>
<c>
<c>
<f>6</f>
<f>5</f>
<parameter>Сумма</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>6</defaultFormatIndex>
<height>4</height>
<vgRows>4</vgRows>
<merge>
@@ -183,30 +183,30 @@
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<font faceName="Arial" height="10" bold="true" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<font>1</font>
<border>0</border>
<horizontalAlignment>Center</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
<format>
<font>1</font>
<border>0</border>
<horizontalAlignment>Center</horizontalAlignment>
</format>
<format>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
<format>
<font>1</font>
<border>0</border>
<horizontalAlignment>Center</horizontalAlignment>
<fillType>Parameter</fillType>
</format>
<format>
<font>1</font>
<border>0</border>
<horizontalAlignment>Center</horizontalAlignment>
</format>
<format>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
</format>
<format>
<font>0</font>
<border>0</border>
<fillType>Parameter</fillType>
</format>
</document>
@@ -15,23 +15,23 @@
<rowsItem>
<index>0</index>
<row>
<formatIndex>2</formatIndex>
<formatIndex>1</formatIndex>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>Ключ</parameter>
</c>
</c>
<c>
<c>
<f>4</f>
<f>3</f>
<parameter>Значение</parameter>
</c>
</c>
</row>
</rowsItem>
<templateMode>true</templateMode>
<defaultFormatIndex>1</defaultFormatIndex>
<defaultFormatIndex>4</defaultFormatIndex>
<height>1</height>
<vgRows>1</vgRows>
<namedItem xsi:type="NamedItemCells">
@@ -48,9 +48,6 @@
<v8ui:style xsi:type="v8ui:SpreadsheetDocumentCellLineType">Solid</v8ui:style>
</line>
<font faceName="Arial" height="10" bold="false" italic="false" underline="false" strikeout="false" kind="Absolute" scale="100"/>
<format>
<width>10</width>
</format>
<format>
<border>0</border>
</format>
@@ -63,4 +60,7 @@
<border>0</border>
<fillType>Parameter</fillType>
</format>
<format>
<width>10</width>
</format>
</document>