Browse Source

[Backend] Correctif ReductionCart

feature/module_traiteur_v1
Fab 3 years ago
parent
commit
a880adf841
2 changed files with 7 additions and 6 deletions
  1. +3
    -2
      ShopBundle/Controller/Backend/ReductionCartController.php
  2. +4
    -4
      ShopBundle/Resources/views/backend/reductioncart/panel_info.html.twig

+ 3
- 2
ShopBundle/Controller/Backend/ReductionCartController.php View File

@@ -20,8 +20,9 @@ class ReductionCartController extends AdminController
{
$displayError =false;
foreach ($entity->getCodes() as $code) {
if ($reductionCart = $this->orderUtils->getReductionCartByCode($code)) {
$this->addFlash('success', "Le code " . $code . " est déjà utilisé dans la réduction #" . $reductionCart->getId() . " " . $reductionCart->getTitle());
$reductionCart = $this->orderUtils->getReductionCartByCode($code);
if ($reductionCart && $reductionCart->getId() != $entity->getId()) {
$this->addFlash('error', "Le code " . $code . " est déjà utilisé dans la réduction #" . $reductionCart->getId() . " " . $reductionCart->getTitle());
$displayError = true;
}
}

+ 4
- 4
ShopBundle/Resources/views/backend/reductioncart/panel_info.html.twig View File

@@ -9,16 +9,16 @@
<div class="col-12">
{{ form_row(form.type) }}
</div>
<div class="col-4">
<div class="col-6">
{{ form_row(form.availableQuantity) }}
</div>
<div class="col-4">
<div class="col-6">
{{ form_row(form.availableQuantityPerUser) }}
</div>
{#
<div class="col-4">
{{ form_row(form.availableQuantityPerCode) }}
</div>
</div>#}
<div class="col-12">
{{ form_row(form.codes, {"attr":{'v-on:keyup' : 'updateCodes'}}) }}
</div>

Loading…
Cancel
Save