config.php 2.46 KB
<?php
 return [
     'csv' =>
         ['web' =>
             ['class' => 'common\components\parsers\CustomCsvParser',
                 'auto_detect_first_line' => true,
                 'converter_conf' => [
                     //'class' => ' common\components\parsers\CustomConverter', // @todo переделать на подключаемый behavior
                                        'configuration' => ["string"   => 'DESCR'],]
             ],
          'console' =>
             ['class' => 'common\components\parsers\CustomCsvParser',
                 'auto_detect_first_line' => true,
                 'hasHeaderRow' => true,
                 'converter_conf' => [
                     //'class' => ' common\components\parsers\CustomConverter',
                     'hasKey' => 1,
                     'configuration' => ["string"   => 'DESCR',
                                         "float"   => 'PRICE',
                                         "brand"   => 'BRAND[',
                                        "integer"   => ['BOX','ADD_BOX'],
                                        "multiply"   => [],
                                        "details"   => [],
                                        "article"   => []

                     ]
             ],],

             'basic_column' => [
                 Null  => 'Пусто',
                 "BRAND"  => 'Бренд',
                 "ARTICLE"=> 'Артикул',
                 "PRICE"  => 'Цена',
                 "DESCR"  => 'Наименование',
                 "BOX"    => 'Колво',
                 "ADD_BOX"=> 'В пути',
                 "GROUP"  => 'Группа RG'
             ],
             ],
      'xml' =>
         ['console' =>
             ['class' => 'yii\multiparser\XmlParser',
                 'node' => 'Товар',
                 'converter_conf' => [
                     //'class' => ' common\components\parsers\CustomConverter',
                     'hasKey' => 1,
                     'configuration' => ["details"   => []
                         ],],
                 ],
             'basic_column' => [
                 "BRAND"  => 'Производитель',
                 "ARTICLE"=> 'Код',
                 "PRICE"  => 'Розница',
                 "DESCR"  => 'Наименование',
                 "BOX"    => 'Колво',
                 "ADD_BOX"=> 'Ожидаемое',
                 "GROUP"  => 'Группа'
             ],
         ],
 ];