소스 검색

[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…
취소
저장