浏览代码

Stripe : montant minimum + correctif formulaire abonnements

refactoring
Guillaume 3 年前
父节点
当前提交
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']

正在加载...
取消
保存