Browse Source

Merge branch 'dev'

master
Guillaume 3 years ago
parent
commit
c757dd151a
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      backend/controllers/ProductController.php

+ 8
- 1
backend/controllers/ProductController.php View File

@@ -108,10 +108,17 @@ class ProductController extends BackendController
public function actionCreate()
{
$model = new Product();

$model->active = 1;
$model->id_producer = GlobalParam::getCurrentProducerId();


$model->monday = 1 ;
$model->tuesday = 1 ;
$model->wednesday = 1 ;
$model->thursday = 1 ;
$model->friday = 1 ;
$model->saturday = 1 ;
$model->sunday = 1 ;

if ($model->load(Yii::$app->request->post()) && $model->save()) {

Loading…
Cancel
Save