소스 검색

Stripe : montant minimum + correctif formulaire abonnements

dev
Guillaume 2 년 전
부모
커밋
1305000013
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      backend/web/js/vuejs/subscription-form.js
  2. +1
    -1
      producer/models/CreditForm.php
  3. +1
    -1
      producer/views/credit/add.php

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

@@ -60,7 +60,7 @@ var app = new Vue({
}) ;
},
changeQuantityProductSubscription: function(increase, product) {
var step = step ? parseFloat(product.step) : 1 ;
var step = product.step ? parseFloat(product.step) : 1 ;
if(!product.quantity) product.quantity = 0 ;
var quantity = parseFloat(product.quantity) ;
if(!increase) {

+ 1
- 1
producer/models/CreditForm.php 파일 보기

@@ -53,7 +53,7 @@ class CreditForm extends Model
{
return [
[['amount'], 'required'],
[['amount'], 'double', 'min' => 15],
[['amount'], 'double', 'min' => 25],
];
}


+ 1
- 1
producer/views/credit/add.php 파일 보기

@@ -62,7 +62,7 @@ $this->addButton(
'template' => '{label}<div class="input-group input-group-lg">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
])
->label('Quel montant souhaitez-vous créditer ?')
->hint('Montant minimum : 15 €'); ?>
->hint('Montant minimum : 25 €'); ?>

<div class="form-group">
<?= Html::submitButton('<span class="glyphicon glyphicon-lock"></span> Payer', ['class' => 'btn btn-primary']

Loading…
취소
저장