Parcourir la source

Utilisation de bon cadeau en compte prépayé

develop
Fab il y a 2 ans
Parent
révision
4a061b9d39
3 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +1
    -1
      ShopBundle/Resources/public/js/backend/script/order/vuejs-order.js
  2. +1
    -0
      ShopBundle/Resources/translations/lcshop.fr.yaml
  3. +1
    -0
      ShopBundle/Services/Utils.php

+ 1
- 1
ShopBundle/Resources/public/js/backend/script/order/vuejs-order.js Voir le fichier

@@ -49,7 +49,7 @@ Vue.component('order-product', {
},
modalAddReductionCredit:function () {
$(this.$parent.$refs['addReductionCreditFormTitle']).val(this.orderProduct.title);
$(this.$parent.$refs['addReductionCreditFormValue']).val(this.orderProduct.price);
$(this.$parent.$refs['addReductionCreditFormValue']).val(this.orderProduct.priceWithTaxAndReduction);
$(this.$parent.$refs['addReductionCreditFormBehaviorTaxRate']).val('tax-included').trigger('change');
$('#modal-add-reduction-credit').modal('show');
}

+ 1
- 0
ShopBundle/Resources/translations/lcshop.fr.yaml Voir le fichier

@@ -292,6 +292,7 @@ field:
cash: Espèce
transfer: Virement
credit: Compte prépayé
transfer-gift: Transfert de bon cadeau
minimumAmountCb: "Paiement par carte bancaire : montant minimum"
emailFrom: "Email (From) : email"
emailFromName: "Email (From) : nom"

+ 1
- 0
ShopBundle/Services/Utils.php Voir le fichier

@@ -47,6 +47,7 @@ class Utils
const MEAN_PAYMENT_CREDIT = 'credit';
const MEAN_PAYMENT_TRANSFER = 'transfer';
const MEAN_PAYMENT_CASH = 'cash';
const MEAN_PAYMENT_GIFT = 'transfer-gift';

public function __construct(EntityManagerInterface $em, ParameterBagInterface $parameterBag, SessionInterface $session, TranslatorInterface $translator, ConfigManager $configManager, CacheManager $liipCacheHelper)
{

Chargement…
Annuler
Enregistrer