소스 검색

[Espace producteur] Abonnement : l'ajout ne fonctionne pas (boutons +/- inactifs) #908

prodstable
Guillaume Bourgeois 1 년 전
부모
커밋
a2c926a9e3
2개의 변경된 파일5개의 추가작업 그리고 6개의 파일을 삭제
  1. +4
    -0
      producer/controllers/SubscriptionController.php
  2. +1
    -6
      producer/web/js/vuejs/subscription-form.js

+ 4
- 0
producer/controllers/SubscriptionController.php 파일 보기

@@ -295,6 +295,10 @@ class SubscriptionController extends ProducerBaseController
]),
]
);

if($product['unit'] == 'piece' && is_null($product['step'])) {
$product['step'] = 1;
}
}

$params['products'] = $productsArray;

+ 1
- 6
producer/web/js/vuejs/subscription-form.js 파일 보기

@@ -116,12 +116,7 @@ var app = new Vue({
}
},
dayChange: function () {
console.log(this.monday + ' ' + this.tuesday + ' ' + this.wednesday + ' ' +
this.thursday + ' ' + this.friday + ' ' + this.saturday + ' ' + this.sunday);

var count = Number(this.monday) + Number(this.tuesday) + Number(this.wednesday)
+ Number(this.thursday) + Number(this.friday) + Number(this.saturday)
+ Number(this.sunday);
var count = Number(this.monday) + Number(this.tuesday) + Number(this.wednesday) + Number(this.thursday) + Number(this.friday) + Number(this.saturday) + Number(this.sunday);

if (count == 1 && this.lastCountDays == 0) {
this.lastCountDays = count;

Loading…
취소
저장