瀏覽代碼

[Espace producteurs] Problème abonnements

prodstable
Guillaume Bourgeois 1 年之前
父節點
當前提交
df4596c455
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. +6
    -2
      producer/controllers/SubscriptionController.php

+ 6
- 2
producer/controllers/SubscriptionController.php 查看文件

@@ -104,8 +104,11 @@ class SubscriptionController extends ProducerBaseController
}
}

if ($model->load($posts) && $model->validate()
&& $model->save()) {
if ($model->load($posts)) {

$model->auto_payment = (int) $posts['auto_payment'];

if($model->validate() && $model->save()) {
$subscription = Subscription::searchOne([
'id' => $model->id
]);
@@ -117,6 +120,7 @@ class SubscriptionController extends ProducerBaseController
Yii::$app->getSession()->setFlash('success', 'Abonnement ajouté');
}
}
}
}

/**

Loading…
取消
儲存