Commit 6aaa5b7ae13903e415044c24201b873cc3fad020
1 parent
2989d0ed
work with check price functional
Showing
25 changed files
with
39 additions
and
101 deletions
Show diff stats
.gitignore
backend/components/FieldEditor/FieldEditor.php deleted
1 | -<?php | |
2 | -namespace backend\components\FieldEditor; | |
3 | -use common\models\DetailsCriteria; | |
4 | -use yii\base\Widget; | |
5 | - | |
6 | - | |
7 | -class FieldEditor extends Widget | |
8 | -{ | |
9 | - public $name; | |
10 | - public $brand; | |
11 | - public $model; | |
12 | - public $template; | |
13 | - | |
14 | - public function init(){ | |
15 | - | |
16 | - parent::init(); | |
17 | - | |
18 | - } | |
19 | - | |
20 | - | |
21 | - public function run() | |
22 | - { | |
23 | - if($this->name && $this->brand && $this->model){ | |
24 | - $widgetData = $this->findModel(); | |
25 | - } else { | |
26 | - $widgetData= [new DetailsCriteria()]; | |
27 | - } | |
28 | - | |
29 | - | |
30 | - return $this->render($this->template.'_field',['model'=>$widgetData]); | |
31 | - } | |
32 | - | |
33 | - protected function findModel() | |
34 | - { | |
35 | - if (($model = DetailsCriteria::find()->where(['name'=>$this->name, 'brand'=>$this->brand])->all()) !== null) { | |
36 | - | |
37 | - return $model; | |
38 | - | |
39 | - } else { | |
40 | - return [new DetailsCriteria()]; | |
41 | - } | |
42 | - } | |
43 | -} | |
44 | 0 | \ No newline at end of file |
backend/components/FieldEditor/views/phone_field.php deleted
1 | -<?php | |
2 | -use yii\helpers\Html; | |
3 | -?> | |
4 | -<div class="fields_result"> | |
5 | -<?php $i=0; foreach ($model as $field):?> | |
6 | - <?= Html::beginTag('div',['class'=>'form-group'])?> | |
7 | - <input type="text" class="form-control" value="<?= $field->value ?>" name="Fields[phone][<?=$i++?>][value]" /> | |
8 | - <span data-id="<?= $field->id ?>" title="удалить" class="glyphicon glyphicon-trash delete-field-item"></span> | |
9 | - <?= Html::endTag('div')?> | |
10 | -<?php endforeach; ?> | |
11 | -</div> | |
12 | -<p class="btn btn-success add_field">Добавить поле</p> | |
13 | - | |
14 | - | |
15 | -<script> | |
16 | - $( document ).ready(function(){ | |
17 | - var start_i = <?=$i?>; | |
18 | - $('.add_field').click(function(){ | |
19 | - var block = $('.fields_result'); | |
20 | - var sub_block = '<div class="form-group">'+ | |
21 | - '<input type="text" class="form-control" value="" name="Fields[phone]['+ start_i++ +'][value]">'+ | |
22 | - '<span data-id="none" title="удалить" class="glyphicon glyphicon-trash delete-field-item"></span>'+ | |
23 | - '<div>'; | |
24 | - block.append(sub_block); | |
25 | - | |
26 | - }); | |
27 | - }); | |
28 | -</script> | |
29 | 0 | \ No newline at end of file |
backend/components/FieldEditor/views/video_field.php deleted
1 | -<?php | |
2 | -use yii\helpers\Html; | |
3 | -?> | |
4 | -<div class="fields_video_result"> | |
5 | - <?php $i=0; foreach ($model as $field):?> | |
6 | - <?= Html::beginTag('div',['class'=>'form-group'])?> | |
7 | - <input type="text" class="form-control" value="<?= $field->value ?>" name="Fields[video][<?=$i++?>][value]" /> | |
8 | - <span data-id="<?= $field->id ?>" title="удалить" class="glyphicon glyphicon-trash delete-field-item"></span> | |
9 | - <?= Html::endTag('div')?> | |
10 | - <?php endforeach; ?> | |
11 | -</div> | |
12 | -<p class="btn btn-success add_video_field">Добавить поле</p> | |
13 | - | |
14 | - | |
15 | -<script> | |
16 | - $( document ).ready(function(){ | |
17 | - var start_i = <?=$i?>; | |
18 | - $('.add_video_field').click(function(){ | |
19 | - var block = $('.fields_video_result'); | |
20 | - var sub_block = '<div class="form-group">'+ | |
21 | - '<input type="text" class="form-control" value="" name="Fields[video]['+ start_i++ +'][value]">'+ | |
22 | - '<span data-id="none" title="удалить" class="glyphicon glyphicon-trash delete-field-item"></span>'+ | |
23 | - '<div>'; | |
24 | - block.append(sub_block); | |
25 | - | |
26 | - }); | |
27 | - }); | |
28 | -</script> | |
29 | 0 | \ No newline at end of file |
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/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
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', | ... | ... |
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 | ... | ... |