Compare View
Commits (4)
Showing
30 changed files
Show diff stats
.gitignore
backend/controllers/CheckPriceController.php
... | ... | @@ -18,6 +18,7 @@ use yii\base\ErrorException; |
18 | 18 | use common\components\CustomVarDamp; |
19 | 19 | use yii\web\GoneHttpException; |
20 | 20 | use yii\web\HttpException; |
21 | +use yii\web\NotFoundHttpException; | |
21 | 22 | |
22 | 23 | /** |
23 | 24 | * Parser controller |
... | ... | @@ -110,7 +111,7 @@ class CheckPriceController extends BaseController |
110 | 111 | |
111 | 112 | return $this->redirect('index'); |
112 | 113 | } else { |
113 | - throw new HttpException('не удалось удалить прайс из базы данных'); | |
114 | + throw new NotFoundHttpException('не удалось удалить прайс из базы данных'); | |
114 | 115 | } |
115 | 116 | |
116 | 117 | ... | ... |
backend/controllers/DetailsDescriptionController.php
... | ... | @@ -85,6 +85,24 @@ class DetailsDescriptionController extends BaseController |
85 | 85 | |
86 | 86 | } |
87 | 87 | |
88 | + public function actionDeleteCriteria() | |
89 | + { | |
90 | + | |
91 | + $params = Yii::$app->request->get(); | |
92 | + $criteria_model = $this->findCriteriaModel( $params ); | |
93 | + | |
94 | + if ( $criteria_model->delete() ) { | |
95 | + | |
96 | + return $this->redirect(['view', 'name' => $params['name'], 'brand' => $params['brand']]); | |
97 | + | |
98 | + } else { | |
99 | + | |
100 | + throw new HttpException('Не удалось удалить характеристики из базы данных'); | |
101 | + | |
102 | + } | |
103 | + | |
104 | + } | |
105 | + | |
88 | 106 | |
89 | 107 | /** |
90 | 108 | * Finds the DetailsDescription model based on its primary key value. |
... | ... | @@ -103,5 +121,19 @@ class DetailsDescriptionController extends BaseController |
103 | 121 | } |
104 | 122 | } |
105 | 123 | |
124 | + protected function findCriteriaModel( $params ) | |
125 | + { | |
126 | + if ( isset($params['name']) | |
127 | + && isset($params['brand']) | |
128 | + && isset($params['key']) | |
129 | + && ($model = DetailsCriteria::findOne(['name' => $params['name'], 'brand' => $params['brand'], 'key' => $params['key']])) !== null ) { | |
130 | + | |
131 | + return $model; | |
132 | + | |
133 | + } else { | |
134 | + throw new NotFoundHttpException('Запрашиваемая характеристика не существует.'); | |
135 | + } | |
136 | + } | |
137 | + | |
106 | 138 | |
107 | 139 | } | ... | ... |
backend/models/ImportersCheckPriceSearch.php
... | ... | @@ -23,6 +23,7 @@ class ImportersCheckPriceSearch extends Importers |
23 | 23 | |
24 | 24 | return [ |
25 | 25 | [['price_date_update', 'date_to'], 'string', 'max' => 10], |
26 | + [ 'id', 'integer'], | |
26 | 27 | ]; |
27 | 28 | |
28 | 29 | |
... | ... | @@ -63,6 +64,8 @@ class ImportersCheckPriceSearch extends Importers |
63 | 64 | // $query->where('0=1'); |
64 | 65 | return $provider; |
65 | 66 | } |
67 | + $query->andFilterWhere([ | |
68 | + 'id' => $this->id]); | |
66 | 69 | |
67 | 70 | if( $this->price_date_update != null || $this->date_to != null ){ |
68 | 71 | ... | ... |
backend/views/check-price/index.php
... | ... | @@ -39,6 +39,7 @@ Pjax::begin(['id' => 'gridViewContent']); |
39 | 39 | |
40 | 40 | [ |
41 | 41 | 'label' => 'Поставщик', |
42 | + 'attribute' => 'id', | |
42 | 43 | 'value' => function ($data) { |
43 | 44 | return '№ ' . $data->id . ' ' . $data->name; |
44 | 45 | }, |
... | ... | @@ -86,14 +87,6 @@ Pjax::begin(['id' => 'gridViewContent']); |
86 | 87 | }, |
87 | 88 | ], |
88 | 89 | ], |
89 | -// ['content' => function ($model) { | |
90 | -// $url = Url::to(['delete', 'id' => $model->id, 'update_date' => $model->price_date_update]); | |
91 | -// return Html::a('<span class="glyphicon glyphicon-trash"> </span>', $url, [ | |
92 | -// 'class' => 'deletePriceButton', | |
93 | -// 'value' => $url, | |
94 | -// ]); | |
95 | -// }, | |
96 | -// ], | |
97 | 90 | ] |
98 | 91 | ]); ?> |
99 | 92 | ... | ... |
backend/views/details-description/view.php
... | ... | @@ -2,8 +2,9 @@ |
2 | 2 | |
3 | 3 | use yii\helpers\Html; |
4 | 4 | use yii\widgets\DetailView; |
5 | -use yii\widgets\ActiveForm; | |
5 | +use yii\bootstrap\ActiveForm; | |
6 | 6 | use yii\grid\GridView; |
7 | +use yii\widgets\Pjax; | |
7 | 8 | |
8 | 9 | |
9 | 10 | /* @var $this yii\web\View */ |
... | ... | @@ -23,47 +24,75 @@ $this->params['breadcrumbs'][] = $this->title; |
23 | 24 | 'attributes' => [ |
24 | 25 | 'name', |
25 | 26 | 'brand', |
26 | - 'tecdoc_id', | |
27 | - 'tecdoc_article', | |
27 | +// 'tecdoc_id', | |
28 | +// 'tecdoc_article', | |
28 | 29 | 'description', |
29 | - 'tecdoc_description', | |
30 | - 'supplier_description', | |
31 | - 'article', | |
32 | - 'image', | |
30 | +// 'tecdoc_description', | |
31 | +// 'supplier_description', | |
32 | +// 'article', | |
33 | +// 'image', | |
33 | 34 | 'tecdoc_image', |
34 | - 'category_id', | |
35 | + // 'category_id', | |
35 | 36 | ], |
36 | 37 | ]) ?> |
37 | 38 | |
38 | 39 | <?php |
39 | - if($count) | |
40 | + echo Html::tag('hr'); | |
41 | + echo Html::tag('h4','Xарактеристики товара'); | |
42 | + if($count){ | |
43 | + Pjax::begin(); | |
40 | 44 | echo GridView::widget([ |
41 | - 'dataProvider' => $dataProvider, | |
42 | - 'columns' => [ | |
43 | - ['class' => 'yii\grid\SerialColumn'], | |
44 | - 'key', | |
45 | - 'value', | |
46 | - ['class' => 'yii\grid\ActionColumn', | |
47 | - 'template' => '{delete}'], | |
48 | - ], | |
49 | - ]); ?> | |
45 | + 'dataProvider' => $dataProvider, | |
46 | + 'showHeader' => false, | |
47 | + 'showOnEmpty' => false, | |
48 | + 'columns' => [ | |
49 | + 'key', | |
50 | + 'value', | |
51 | + ['class' => \yii\grid\ActionColumn::className(), | |
52 | + 'template'=>'{delete}', | |
53 | + 'buttons' => [ | |
54 | + 'delete' => function ($url, $model, $key) { | |
55 | + $url = \yii\helpers\Url::to(['details-description/delete-criteria', 'name' => $model->name, 'brand' => $model->brand, 'key' => $model->key]); | |
56 | + return Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [ | |
57 | + 'title' => Yii::t('yii', 'Удалить характеристики'), | |
58 | + 'data-confirm' => 'Вы уверены что хотите удалить эти характеристики?', | |
59 | + 'data-method' => 'post', | |
60 | + 'data-pjax' => '1', | |
61 | + ]); | |
62 | + }, | |
63 | + ], | |
64 | + ], | |
65 | + ], | |
66 | + ]); | |
67 | + Pjax::end(); | |
68 | + } | |
69 | + | |
70 | + ?> | |
50 | 71 | |
51 | 72 | <div class="details-criteria-form"> |
52 | 73 | |
53 | 74 | <?php $form = ActiveForm::begin(['action' =>['details-description/create-criteria'],]); ?> |
54 | 75 | |
55 | - <?= $form->field( $criteria_model, 'key' )->textInput(['maxlength' => true]) ?> | |
76 | + <?= $form->field( $criteria_model, 'key', [ | |
77 | + 'horizontalCssClasses' => [ | |
78 | + 'input' => 'col-sm-1', | |
79 | + ]] )->textInput() ?> | |
56 | 80 | |
57 | - <?= $form->field( $criteria_model, 'value' )->textInput(['maxlength' => true]) ?> | |
81 | + <?= $form->field( $criteria_model, 'value', [ | |
82 | + 'horizontalCssClasses' => [ | |
83 | + 'input' => 'col-sm-1', | |
84 | + ]] )->textInput() ?> | |
58 | 85 | |
59 | 86 | <?= $form->field( $criteria_model, 'name' )->hiddenInput(['value' => $model->name])->label(false)?> |
60 | 87 | <?= $form->field( $criteria_model, 'brand' )->hiddenInput(['value' => $model->brand])->label(false) ?> |
61 | 88 | |
62 | 89 | |
63 | 90 | <div class="form-group"> |
64 | - <?= Html::submitButton(Yii::t('app', 'Добавить'), ['class' => 'btn btn-success']) ?> | |
91 | + <?= Html::submitButton(Yii::t('app', 'Добавить характеристику'), ['class' => 'btn btn-success']) ?> | |
65 | 92 | </div> |
66 | 93 | |
67 | 94 | <?php ActiveForm::end(); ?> |
68 | 95 | </div> |
96 | + <hr> | |
97 | + | |
69 | 98 | </div> | ... | ... |
backend/views/layouts/column.php
... | ... | @@ -286,6 +286,7 @@ $this->beginContent('@app/views/layouts/main.php'); |
286 | 286 | ['label' => "Загрузка файлов", 'url' => ['#'], 'items' => [ |
287 | 287 | ['label' => 'Кросс файлы', 'url' => ['crossing-upload/index']], |
288 | 288 | ['label' => 'Группы RG', 'url' => ['rg-grup/index']], |
289 | + ['label' => "Прайс файлы", 'url' => ['#'], 'items' => [ | |
289 | 290 | ['label' => 'Файлы на сервере', 'url' => ['parser/server-files']], |
290 | 291 | ['label' => 'Загрузить файл на сервер', 'url' => ['parser/index', 'mode' => 1]], |
291 | 292 | ['label' => 'Ручная загрузка', 'url' => ['parser/index']], |
... | ... | @@ -293,6 +294,8 @@ $this->beginContent('@app/views/layouts/main.php'); |
293 | 294 | ['label' => 'Управление префиксами', 'url' => ['importers-prefix/index']], |
294 | 295 | ], |
295 | 296 | ], |
297 | + ], | |
298 | + ], | |
296 | 299 | ['label' => 'Управление ролями', 'url' => ['#'], 'items' => [ |
297 | 300 | ['label' => 'Покупатели', 'url' => ['accounts/index']], |
298 | 301 | ['label' => 'Поставщики', 'url' => ['importers/index']], | ... | ... |
common/components/PriceWriter.php
common/components/parsers/config.php
... | ... | @@ -72,7 +72,8 @@ |
72 | 72 | ['web' => |
73 | 73 | ['class' => 'yii\multiparser\XlsxParser', |
74 | 74 | 'path_for_extract_files' => \Yii::getAlias('@temp_upload') . '/xlsx/', |
75 | - // 'has_header_row' => true, | |
75 | + //'auto_detect_first_line' => true, | |
76 | + 'has_header_row' => true, | |
76 | 77 | 'active_sheet' => 1, |
77 | 78 | 'converter_conf' => [ |
78 | 79 | 'class' => 'common\components\parsers\CustomConverter', | ... | ... |
common/models/DetailsCriteria.php
... | ... | @@ -48,8 +48,8 @@ class DetailsCriteria extends \backend\components\base\BaseActiveRecord |
48 | 48 | return [ |
49 | 49 | 'name' => Yii::t('app', 'Name'), |
50 | 50 | 'brand' => Yii::t('app', 'Brand'), |
51 | - 'key' => Yii::t('app', 'Key'), | |
52 | - 'value' => Yii::t('app', 'Value'), | |
51 | + 'key' => Yii::t('app', 'Ключ'), | |
52 | + 'value' => Yii::t('app', 'Характеристика'), | |
53 | 53 | 'if_tecdoc' => Yii::t('app', 'If Tecdoc'), |
54 | 54 | 'filter_id' => Yii::t('app', 'Filter ID'), |
55 | 55 | 'timestamp' => Yii::t('app', 'Timestamp'), | ... | ... |
common/models/DetailsDescription.php
... | ... | @@ -59,12 +59,12 @@ class DetailsDescription extends \backend\components\base\BaseActiveRecord |
59 | 59 | 'brand' => Yii::t('app', 'Бренд'), |
60 | 60 | 'tecdoc_id' => Yii::t('app', 'Tecdoc ID'), |
61 | 61 | 'tecdoc_article' => Yii::t('app', 'Артикул Текдока'), |
62 | - 'description' => Yii::t('app', 'Description'), | |
62 | + 'description' => Yii::t('app', 'Главное наименование'), | |
63 | 63 | 'tecdoc_description' => Yii::t('app', 'Tecdoc Description'), |
64 | - 'supplier_description' => Yii::t('app', 'Supplier Description'), | |
64 | + 'supplier_description' => Yii::t('app', 'Наименование поставщика'), | |
65 | 65 | 'article' => Yii::t('app', 'Article'), |
66 | - 'image' => Yii::t('app', 'Image'), | |
67 | - 'tecdoc_image' => Yii::t('app', 'Tecdoc Image'), | |
66 | + 'image' => Yii::t('app', 'Картинка сайта'), | |
67 | + 'tecdoc_image' => Yii::t('app', 'Картинка Текдока'), | |
68 | 68 | 'category_id' => Yii::t('app', 'Category ID'), |
69 | 69 | 'timestamp' => Yii::t('app', 'Timestamp'), |
70 | 70 | ]; | ... | ... |
No preview for this file type
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/[Content_Types].xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="bin" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.printerSettings"/><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/><Override PartName="/xl/workbook.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"/><Override PartName="/xl/worksheets/sheet1.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/worksheets/sheet2.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/worksheets/sheet3.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/xl/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"/><Override PartName="/xl/sharedStrings.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"/><Override PartName="/xl/calcChain.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/></Types> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/_rels/.rels
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml"/></Relationships> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/docProps/app.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Application>Microsoft Excel</Application><DocSecurity>0</DocSecurity><ScaleCrop>false</ScaleCrop><HeadingPairs><vt:vector size="2" baseType="variant"><vt:variant><vt:lpstr>Листы</vt:lpstr></vt:variant><vt:variant><vt:i4>3</vt:i4></vt:variant></vt:vector></HeadingPairs><TitlesOfParts><vt:vector size="3" baseType="lpstr"><vt:lpstr>Лист1</vt:lpstr><vt:lpstr>Лист2</vt:lpstr><vt:lpstr>Лист3</vt:lpstr></vt:vector></TitlesOfParts><LinksUpToDate>false</LinksUpToDate><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>15.0300</AppVersion></Properties> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/docProps/core.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:creator></dc:creator><cp:lastModifiedBy></cp:lastModifiedBy><dcterms:created xsi:type="dcterms:W3CDTF">2006-09-16T00:00:00Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2015-11-17T15:57:37Z</dcterms:modified></cp:coreProperties> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/_rels/workbook.xml.rels
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet3.xml"/><Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/calcChain" Target="calcChain.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet2.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet1.xml"/><Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings" Target="sharedStrings.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/></Relationships> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/calcChain.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<calcChain xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><c r="H3" i="1" l="1"/><c r="H4" i="1"/><c r="H5" i="1"/><c r="H6" i="1"/><c r="H7" i="1"/><c r="H8" i="1"/><c r="H9" i="1"/><c r="H2" i="1"/></calcChain> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/printerSettings/printerSettings1.bin
0 → 100644
No preview for this file type
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/sharedStrings.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="7" uniqueCount="7"><si><t>RG</t></si><si><t>ВХ</t></si><si><t xml:space="preserve">М опт </t></si><si><t xml:space="preserve">Опт </t></si><si><t>Дилер</t></si><si><t>Коеф. Розница</t></si><si><t>Розница Результат</t></si></sst> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/styles.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<styleSheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><fonts count="4" x14ac:knownFonts="1"><font><sz val="11"/><color theme="1"/><name val="Calibri"/><family val="2"/><scheme val="minor"/></font><font><b/><sz val="10"/><color rgb="FF000000"/><name val="Arial"/><family val="2"/></font><font><b/><sz val="10"/><color rgb="FF000000"/><name val="Times New Roman"/><family val="1"/></font><font><sz val="10"/><color theme="1"/><name val="Calibri"/><family val="2"/><scheme val="minor"/></font></fonts><fills count="2"><fill><patternFill patternType="none"/></fill><fill><patternFill patternType="gray125"/></fill></fills><borders count="3"><border><left/><right/><top/><bottom/><diagonal/></border><border><left/><right style="thin"><color indexed="64"/></right><top/><bottom style="thin"><color indexed="64"/></bottom><diagonal/></border><border><left style="thin"><color indexed="64"/></left><right style="thin"><color indexed="64"/></right><top/><bottom style="thin"><color indexed="64"/></bottom><diagonal/></border></borders><cellStyleXfs count="1"><xf numFmtId="0" fontId="0" fillId="0" borderId="0"/></cellStyleXfs><cellXfs count="6"><xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0"/><xf numFmtId="0" fontId="1" fillId="0" borderId="1" xfId="0" applyFont="1" applyBorder="1" applyAlignment="1"><alignment horizontal="center" wrapText="1"/></xf><xf numFmtId="0" fontId="2" fillId="0" borderId="2" xfId="0" applyFont="1" applyBorder="1" applyAlignment="1"><alignment horizontal="center" vertical="center" wrapText="1"/></xf><xf numFmtId="0" fontId="3" fillId="0" borderId="0" xfId="0" applyFont="1"/><xf numFmtId="49" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/><xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/></cellXfs><cellStyles count="1"><cellStyle name="Обычный" xfId="0" builtinId="0"/></cellStyles><dxfs count="0"/><tableStyles count="0" defaultTableStyle="TableStyleMedium2" defaultPivotStyle="PivotStyleMedium9"/><extLst><ext uri="{EB79DEF2-80B8-43e5-95BD-54CBDDF9020C}" xmlns:x14="http://schemas.microsoft.com/office/spreadsheetml/2009/9/main"><x14:slicerStyles defaultSlicerStyle="SlicerStyleLight1"/></ext><ext uri="{9260A510-F301-46a8-8635-F512D64BE5F5}" xmlns:x15="http://schemas.microsoft.com/office/spreadsheetml/2010/11/main"><x15:timelineStyles defaultTimelineStyle="TimeSlicerStyleLight1"/></ext></extLst></styleSheet> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/theme/theme1.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Тема Office"><a:themeElements><a:clrScheme name="Стандартная"><a:dk1><a:sysClr val="windowText" lastClr="000000"/></a:dk1><a:lt1><a:sysClr val="window" lastClr="FFFFFF"/></a:lt1><a:dk2><a:srgbClr val="1F497D"/></a:dk2><a:lt2><a:srgbClr val="EEECE1"/></a:lt2><a:accent1><a:srgbClr val="4F81BD"/></a:accent1><a:accent2><a:srgbClr val="C0504D"/></a:accent2><a:accent3><a:srgbClr val="9BBB59"/></a:accent3><a:accent4><a:srgbClr val="8064A2"/></a:accent4><a:accent5><a:srgbClr val="4BACC6"/></a:accent5><a:accent6><a:srgbClr val="F79646"/></a:accent6><a:hlink><a:srgbClr val="0000FF"/></a:hlink><a:folHlink><a:srgbClr val="800080"/></a:folHlink></a:clrScheme><a:fontScheme name="Стандартная"><a:majorFont><a:latin typeface="Cambria" panose="020F0302020204030204"/><a:ea typeface=""/><a:cs typeface=""/><a:font script="Jpan" typeface="MS Pゴシック"/><a:font script="Hang" typeface="맑은 고딕"/><a:font script="Hans" typeface="宋体"/><a:font script="Hant" typeface="新細明體"/><a:font script="Arab" typeface="Times New Roman"/><a:font script="Hebr" typeface="Times New Roman"/><a:font script="Thai" typeface="Tahoma"/><a:font script="Ethi" typeface="Nyala"/><a:font script="Beng" typeface="Vrinda"/><a:font script="Gujr" typeface="Shruti"/><a:font script="Khmr" typeface="MoolBoran"/><a:font script="Knda" typeface="Tunga"/><a:font script="Guru" typeface="Raavi"/><a:font script="Cans" typeface="Euphemia"/><a:font script="Cher" typeface="Plantagenet Cherokee"/><a:font script="Yiii" typeface="Microsoft Yi Baiti"/><a:font script="Tibt" typeface="Microsoft Himalaya"/><a:font script="Thaa" typeface="MV Boli"/><a:font script="Deva" typeface="Mangal"/><a:font script="Telu" typeface="Gautami"/><a:font script="Taml" typeface="Latha"/><a:font script="Syrc" typeface="Estrangelo Edessa"/><a:font script="Orya" typeface="Kalinga"/><a:font script="Mlym" typeface="Kartika"/><a:font script="Laoo" typeface="DokChampa"/><a:font script="Sinh" typeface="Iskoola Pota"/><a:font script="Mong" typeface="Mongolian Baiti"/><a:font script="Viet" typeface="Times New Roman"/><a:font script="Uigh" typeface="Microsoft Uighur"/><a:font script="Geor" typeface="Sylfaen"/></a:majorFont><a:minorFont><a:latin typeface="Calibri" panose="020F0502020204030204"/><a:ea typeface=""/><a:cs typeface=""/><a:font script="Jpan" typeface="MS Pゴシック"/><a:font script="Hang" typeface="맑은 고딕"/><a:font script="Hans" typeface="宋体"/><a:font script="Hant" typeface="新細明體"/><a:font script="Arab" typeface="Arial"/><a:font script="Hebr" typeface="Arial"/><a:font script="Thai" typeface="Tahoma"/><a:font script="Ethi" typeface="Nyala"/><a:font script="Beng" typeface="Vrinda"/><a:font script="Gujr" typeface="Shruti"/><a:font script="Khmr" typeface="DaunPenh"/><a:font script="Knda" typeface="Tunga"/><a:font script="Guru" typeface="Raavi"/><a:font script="Cans" typeface="Euphemia"/><a:font script="Cher" typeface="Plantagenet Cherokee"/><a:font script="Yiii" typeface="Microsoft Yi Baiti"/><a:font script="Tibt" typeface="Microsoft Himalaya"/><a:font script="Thaa" typeface="MV Boli"/><a:font script="Deva" typeface="Mangal"/><a:font script="Telu" typeface="Gautami"/><a:font script="Taml" typeface="Latha"/><a:font script="Syrc" typeface="Estrangelo Edessa"/><a:font script="Orya" typeface="Kalinga"/><a:font script="Mlym" typeface="Kartika"/><a:font script="Laoo" typeface="DokChampa"/><a:font script="Sinh" typeface="Iskoola Pota"/><a:font script="Mong" typeface="Mongolian Baiti"/><a:font script="Viet" typeface="Arial"/><a:font script="Uigh" typeface="Microsoft Uighur"/><a:font script="Geor" typeface="Sylfaen"/></a:minorFont></a:fontScheme><a:fmtScheme name="Стандартная"><a:fillStyleLst><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="50000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="35000"><a:schemeClr val="phClr"><a:tint val="37000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:tint val="15000"/><a:satMod val="350000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="16200000" scaled="1"/></a:gradFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:shade val="51000"/><a:satMod val="130000"/></a:schemeClr></a:gs><a:gs pos="80000"><a:schemeClr val="phClr"><a:shade val="93000"/><a:satMod val="130000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="94000"/><a:satMod val="135000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="16200000" scaled="0"/></a:gradFill></a:fillStyleLst><a:lnStyleLst><a:ln w="9525" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"><a:shade val="95000"/><a:satMod val="105000"/></a:schemeClr></a:solidFill><a:prstDash val="solid"/></a:ln><a:ln w="25400" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln><a:ln w="38100" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln></a:lnStyleLst><a:effectStyleLst><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="38000"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw></a:effectLst><a:scene3d><a:camera prst="orthographicFront"><a:rot lat="0" lon="0" rev="0"/></a:camera><a:lightRig rig="threePt" dir="t"><a:rot lat="0" lon="0" rev="1200000"/></a:lightRig></a:scene3d><a:sp3d><a:bevelT w="63500" h="25400"/></a:sp3d></a:effectStyle></a:effectStyleLst><a:bgFillStyleLst><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="40000"/><a:satMod val="350000"/></a:schemeClr></a:gs><a:gs pos="40000"><a:schemeClr val="phClr"><a:tint val="45000"/><a:shade val="99000"/><a:satMod val="350000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="20000"/><a:satMod val="255000"/></a:schemeClr></a:gs></a:gsLst><a:path path="circle"><a:fillToRect l="50000" t="-80000" r="50000" b="180000"/></a:path></a:gradFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="80000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="30000"/><a:satMod val="200000"/></a:schemeClr></a:gs></a:gsLst><a:path path="circle"><a:fillToRect l="50000" t="50000" r="50000" b="50000"/></a:path></a:gradFill></a:bgFillStyleLst></a:fmtScheme></a:themeElements><a:objectDefaults/><a:extraClrSchemeLst/></a:theme> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/workbook.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x15" xmlns:x15="http://schemas.microsoft.com/office/spreadsheetml/2010/11/main"><fileVersion appName="xl" lastEdited="6" lowestEdited="4" rupBuild="14420"/><workbookPr filterPrivacy="1" defaultThemeVersion="124226"/><bookViews><workbookView xWindow="240" yWindow="765" windowWidth="14805" windowHeight="7350"/></bookViews><sheets><sheet name="Лист1" sheetId="1" r:id="rId1"/><sheet name="Лист2" sheetId="2" r:id="rId2"/><sheet name="Лист3" sheetId="3" r:id="rId3"/></sheets><calcPr calcId="152511"/></workbook> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/worksheets/_rels/sheet1.xml.rels
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/printerSettings" Target="../printerSettings/printerSettings1.bin"/></Relationships> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/worksheets/sheet1.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><dimension ref="A1:H60"/><sheetViews><sheetView tabSelected="1" workbookViewId="0"><selection activeCell="K19" sqref="K19"/></sheetView></sheetViews><sheetFormatPr defaultRowHeight="15" x14ac:dyDescent="0.25"/><cols><col min="1" max="1" width="16.42578125" style="3" customWidth="1"/><col min="2" max="2" width="13.85546875" style="3" customWidth="1"/><col min="3" max="3" width="16.5703125" customWidth="1"/><col min="4" max="4" width="15.85546875" customWidth="1"/><col min="5" max="5" width="11" customWidth="1"/><col min="6" max="6" width="15.28515625" customWidth="1"/><col min="8" max="8" width="13.28515625" style="4" customWidth="1"/></cols><sheetData><row r="1" spans="1:8" x14ac:dyDescent="0.25"><c r="A1" s="3" t="s"><v>0</v></c><c r="B1" s="3" t="s"><v>1</v></c><c r="C1" t="s"><v>2</v></c><c r="D1" t="s"><v>3</v></c><c r="E1" t="s"><v>4</v></c><c r="F1" t="s"><v>5</v></c><c r="H1" s="4" t="s"><v>6</v></c></row><row r="2" spans="1:8" x14ac:dyDescent="0.25"><c r="A2" s="2"><v>1</v></c><c r="B2" s="1"><v>0.57200000000000006</v></c><c r="F2"><v>1.35</v></c><c r="G2" s="1"/><c r="H2" s="5"><f>B2*F2</f><v>0.77220000000000011</v></c></row><row r="3" spans="1:8" x14ac:dyDescent="0.25"><c r="A3" s="2"><v>2</v></c><c r="B3" s="1"><v>0.66</v></c><c r="F3"><v>1.35</v></c><c r="G3" s="1"/><c r="H3" s="5"><f t="shared" ref="H3:H9" si="0">B3*F3</f><v>0.89100000000000013</v></c></row><row r="4" spans="1:8" x14ac:dyDescent="0.25"><c r="A4" s="2"><v>3</v></c><c r="B4" s="1"><v>0.748</v></c><c r="F4"><v>1.35</v></c><c r="G4" s="1"/><c r="H4" s="5"><f t="shared" si="0"/><v>1.0098</v></c></row><row r="5" spans="1:8" x14ac:dyDescent="0.25"><c r="A5" s="2"><v>4</v></c><c r="B5" s="1"><v>0.82500000000000007</v></c><c r="F5"><v>1.35</v></c><c r="G5" s="1"/><c r="H5" s="5"><f t="shared" si="0"/><v>1.1137500000000002</v></c></row><row r="6" spans="1:8" x14ac:dyDescent="0.25"><c r="A6" s="2"><v>5</v></c><c r="B6" s="1"><v>0.92949999999999999</v></c><c r="F6"><v>1.35</v></c><c r="G6" s="1"/><c r="H6" s="5"><f t="shared" si="0"/><v>1.2548250000000001</v></c></row><row r="7" spans="1:8" x14ac:dyDescent="0.25"><c r="A7" s="2"><v>6</v></c><c r="B7" s="1"><v>0.97350000000000014</v></c><c r="F7"><v>1.35</v></c><c r="G7" s="1"/><c r="H7" s="5"><f t="shared" si="0"/><v>1.3142250000000002</v></c></row><row r="8" spans="1:8" x14ac:dyDescent="0.25"><c r="A8" s="2"><v>7</v></c><c r="B8" s="1"><v>0.97350000000000014</v></c><c r="F8"><v>1.35</v></c><c r="G8" s="1"/><c r="H8" s="5"><f t="shared" si="0"/><v>1.3142250000000002</v></c></row><row r="9" spans="1:8" x14ac:dyDescent="0.25"><c r="A9" s="2"><v>8</v></c><c r="B9" s="1"><v>0.99550000000000016</v></c><c r="F9"><v>1.35</v></c><c r="G9" s="1"/><c r="H9" s="5"><f t="shared" si="0"/><v>1.3439250000000003</v></c></row><row r="10" spans="1:8" x14ac:dyDescent="0.25"><c r="A10" s="2"/><c r="B10" s="1"/><c r="G10" s="1"/><c r="H10" s="5"/></row><row r="11" spans="1:8" x14ac:dyDescent="0.25"><c r="A11" s="2"/><c r="B11" s="1"/><c r="G11" s="1"/><c r="H11" s="5"/></row><row r="12" spans="1:8" x14ac:dyDescent="0.25"><c r="A12" s="2"/><c r="B12" s="1"/><c r="E12" s="3"/><c r="G12" s="1"/><c r="H12" s="5"/></row><row r="13" spans="1:8" x14ac:dyDescent="0.25"><c r="A13" s="2"/><c r="B13" s="1"/><c r="G13" s="1"/><c r="H13" s="5"/></row><row r="14" spans="1:8" x14ac:dyDescent="0.25"><c r="A14" s="2"/><c r="B14" s="1"/><c r="G14" s="1"/><c r="H14" s="5"/></row><row r="15" spans="1:8" x14ac:dyDescent="0.25"><c r="A15" s="2"/><c r="B15" s="1"/><c r="G15" s="1"/><c r="H15" s="5"/></row><row r="16" spans="1:8" x14ac:dyDescent="0.25"><c r="A16" s="2"/><c r="B16" s="1"/><c r="G16" s="1"/><c r="H16" s="5"/></row><row r="17" spans="1:8" x14ac:dyDescent="0.25"><c r="A17" s="2"/><c r="B17" s="1"/><c r="G17" s="1"/><c r="H17" s="5"/></row><row r="18" spans="1:8" x14ac:dyDescent="0.25"><c r="A18" s="2"/><c r="B18" s="1"/><c r="G18" s="1"/><c r="H18" s="5"/></row><row r="19" spans="1:8" x14ac:dyDescent="0.25"><c r="A19" s="2"/><c r="B19" s="1"/><c r="G19" s="1"/><c r="H19" s="5"/></row><row r="20" spans="1:8" x14ac:dyDescent="0.25"><c r="A20" s="2"/><c r="B20" s="1"/><c r="G20" s="1"/><c r="H20" s="5"/></row><row r="21" spans="1:8" x14ac:dyDescent="0.25"><c r="A21" s="2"/><c r="B21" s="1"/><c r="G21" s="1"/><c r="H21" s="5"/></row><row r="22" spans="1:8" x14ac:dyDescent="0.25"><c r="A22" s="2"/><c r="B22" s="1"/><c r="G22" s="1"/><c r="H22" s="5"/></row><row r="23" spans="1:8" x14ac:dyDescent="0.25"><c r="A23" s="2"/><c r="B23" s="1"/><c r="G23" s="1"/><c r="H23" s="5"/></row><row r="24" spans="1:8" x14ac:dyDescent="0.25"><c r="A24" s="2"/><c r="B24" s="1"/><c r="G24" s="1"/><c r="H24" s="5"/></row><row r="25" spans="1:8" x14ac:dyDescent="0.25"><c r="A25" s="2"/><c r="B25" s="1"/><c r="G25" s="1"/><c r="H25" s="5"/></row><row r="26" spans="1:8" x14ac:dyDescent="0.25"><c r="A26" s="2"/><c r="B26" s="1"/><c r="G26" s="1"/><c r="H26" s="5"/></row><row r="27" spans="1:8" x14ac:dyDescent="0.25"><c r="A27" s="2"/><c r="B27" s="1"/><c r="G27" s="1"/><c r="H27" s="5"/></row><row r="28" spans="1:8" x14ac:dyDescent="0.25"><c r="A28" s="2"/><c r="B28" s="1"/><c r="G28" s="1"/><c r="H28" s="5"/></row><row r="29" spans="1:8" x14ac:dyDescent="0.25"><c r="A29" s="2"/><c r="B29" s="1"/><c r="G29" s="1"/><c r="H29" s="5"/></row><row r="30" spans="1:8" x14ac:dyDescent="0.25"><c r="A30" s="2"/><c r="B30" s="1"/></row><row r="31" spans="1:8" x14ac:dyDescent="0.25"><c r="A31" s="2"/><c r="B31" s="1"/></row><row r="32" spans="1:8" x14ac:dyDescent="0.25"><c r="A32" s="2"/><c r="B32" s="1"/></row><row r="33" spans="1:2" x14ac:dyDescent="0.25"><c r="A33" s="2"/><c r="B33" s="1"/></row><row r="34" spans="1:2" x14ac:dyDescent="0.25"><c r="A34" s="2"/><c r="B34" s="1"/></row><row r="35" spans="1:2" x14ac:dyDescent="0.25"><c r="A35" s="2"/><c r="B35" s="1"/></row><row r="36" spans="1:2" x14ac:dyDescent="0.25"><c r="A36" s="2"/><c r="B36" s="1"/></row><row r="37" spans="1:2" x14ac:dyDescent="0.25"><c r="A37" s="2"/><c r="B37" s="1"/></row><row r="38" spans="1:2" x14ac:dyDescent="0.25"><c r="A38" s="2"/><c r="B38" s="1"/></row><row r="39" spans="1:2" x14ac:dyDescent="0.25"><c r="A39" s="2"/><c r="B39" s="1"/></row><row r="40" spans="1:2" x14ac:dyDescent="0.25"><c r="A40" s="2"/><c r="B40" s="1"/></row><row r="41" spans="1:2" x14ac:dyDescent="0.25"><c r="A41" s="2"/><c r="B41" s="1"/></row><row r="42" spans="1:2" x14ac:dyDescent="0.25"><c r="A42" s="2"/><c r="B42" s="1"/></row><row r="43" spans="1:2" x14ac:dyDescent="0.25"><c r="A43" s="2"/><c r="B43" s="1"/></row><row r="44" spans="1:2" x14ac:dyDescent="0.25"><c r="A44" s="2"/><c r="B44" s="1"/></row><row r="45" spans="1:2" x14ac:dyDescent="0.25"><c r="A45" s="2"/><c r="B45" s="1"/></row><row r="46" spans="1:2" x14ac:dyDescent="0.25"><c r="A46" s="2"/><c r="B46" s="1"/></row><row r="47" spans="1:2" x14ac:dyDescent="0.25"><c r="A47" s="2"/><c r="B47" s="1"/></row><row r="48" spans="1:2" x14ac:dyDescent="0.25"><c r="A48" s="2"/><c r="B48" s="1"/></row><row r="49" spans="1:2" x14ac:dyDescent="0.25"><c r="A49" s="2"/><c r="B49" s="1"/></row><row r="50" spans="1:2" x14ac:dyDescent="0.25"><c r="A50" s="2"/><c r="B50" s="1"/></row><row r="51" spans="1:2" x14ac:dyDescent="0.25"><c r="A51" s="2"/><c r="B51" s="1"/></row><row r="52" spans="1:2" x14ac:dyDescent="0.25"><c r="A52" s="2"/><c r="B52" s="1"/></row><row r="53" spans="1:2" x14ac:dyDescent="0.25"><c r="A53" s="2"/><c r="B53" s="1"/></row><row r="54" spans="1:2" x14ac:dyDescent="0.25"><c r="A54" s="2"/><c r="B54" s="1"/></row><row r="55" spans="1:2" x14ac:dyDescent="0.25"><c r="A55" s="2"/><c r="B55" s="1"/></row><row r="56" spans="1:2" x14ac:dyDescent="0.25"><c r="A56" s="2"/><c r="B56" s="1"/></row><row r="57" spans="1:2" x14ac:dyDescent="0.25"><c r="A57" s="2"/><c r="B57" s="1"/></row><row r="58" spans="1:2" x14ac:dyDescent="0.25"><c r="B58" s="1"/></row><row r="59" spans="1:2" x14ac:dyDescent="0.25"><c r="B59" s="1"/></row><row r="60" spans="1:2" x14ac:dyDescent="0.25"><c r="B60" s="1"/></row></sheetData><pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/><pageSetup paperSize="9" orientation="portrait" verticalDpi="0" r:id="rId1"/></worksheet> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/worksheets/sheet2.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><dimension ref="A1"/><sheetViews><sheetView workbookViewId="0"/></sheetViews><sheetFormatPr defaultRowHeight="15" x14ac:dyDescent="0.25"/><sheetData/><pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/></worksheet> | |
0 | 3 | \ No newline at end of file | ... | ... |
storage/parser_data/temp/xlsx/kud0hb7or3133ull44s061thg2/xl/worksheets/sheet3.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><dimension ref="A1"/><sheetViews><sheetView workbookViewId="0"/></sheetViews><sheetFormatPr defaultRowHeight="15" x14ac:dyDescent="0.25"/><sheetData/><pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/></worksheet> | |
0 | 3 | \ No newline at end of file | ... | ... |