|
1234567891011121314151617181920 |
- {% trans_default_domain 'lcshop' %}
- {% import '@LcShop/backend/default/block/macros.html.twig' as macros %}
-
- <div class="row">
-
- {{ macros.startCard(8, 'ReductionCart.actions') }}
-
- <div class="col-12">
- {{ form_row(form.appliedTo, {"attr" :{"v-model" : 'reductionAppliedTo'}}) }}
- </div>
- <div class="col-12" v-show="reductionAppliedTo != 'delivery'">
- {{ form_row(form.freeShipping) }}
- </div>
- {{ macros.fieldReductionUnit(form) }}
- {{ macros.fieldReductionValue(form) }}
- {{ macros.fieldReductionBehaviorTaxRate(form) }}
-
- {{ macros.endCard() }}
-
- </div>
|