Exemplo n.º 1
0
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     return;
     $catalog = \App\Helpers\CitynatureHelper::getCatalogArrayFromCsvFile(base_path('storage/app/price1.csv'));
     $this->info('Catalog count = ' . count($catalog));
     $this->output->progressStart(count($catalog));
     foreach ($catalog as $item) {
         \App\Models\ProductPrice::create(['name' => $item->title, 'code' => $item->index, 'article' => $item->article, 'price_1' => $item->price_1, 'price_2' => $item->price_2, 'price_3' => $item->price_3, 'price_4' => $item->price_4]);
         $this->output->progressAdvance();
     }
     $this->output->progressFinish();
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getProductPrices()
 {
     return $this->hasMany(ProductPrice::className(), ['created_by' => 'user_id']);
 }
Exemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getProductPrices()
 {
     return $this->hasMany(ProductPrice::className(), ['product_id' => 'product_id']);
 }