|
|
@@ -135,24 +135,27 @@ $pointSaleModule = $this->getPointSaleModule(); |
|
|
|
} |
|
|
|
?> |
|
|
|
<table class="table table-bordered table-condensed table-hover" id="products"> |
|
|
|
<tr v-for="product in products"> |
|
|
|
<td>{{ product.name }}</td> |
|
|
|
<tr v-for="product in products" v-if="product.is_available_for_subscriptions == 1 || (product.is_available_for_subscriptions == 0 && product.quantity > 0)"> |
|
|
|
<td> |
|
|
|
{{ product.name }} |
|
|
|
<template v-if="product.is_available_for_subscriptions == 0"> |
|
|
|
<br /><span class="label label-warning">Indisponible pour les abonnements</span> |
|
|
|
</template> |
|
|
|
</td> |
|
|
|
<td> |
|
|
|
<input type="hidden" :value="product.step" :name="'product_step_'+product.step" /> |
|
|
|
<input type="hidden" :value="product.price" :name="'product_price_'+product.price" /> |
|
|
|
<div class="input-group"> |
|
|
|
<span class="input-group-btn"> |
|
|
|
<button class="btn btn-default" type="button" @click="changeQuantityProductSubscription(false, product)"><span class="glyphicon glyphicon-minus"></span></button> |
|
|
|
</span> |
|
|
|
<span class="input-group-btn"> |
|
|
|
<button class="btn btn-default" type="button" @click="changeQuantityProductSubscription(false, product)"><span class="glyphicon glyphicon-minus"></span></button> |
|
|
|
</span> |
|
|
|
<input v-model="product.quantity" :name="'SubscriptionForm[products][product_'+product.id+']'" class="form-control input-quantity" /> |
|
|
|
<div class="input-group-addon"> |
|
|
|
<span> |
|
|
|
{{ product.wording_unit }} |
|
|
|
</span> |
|
|
|
<span>{{ product.wording_unit }}</span> |
|
|
|
</div> |
|
|
|
<span class="input-group-btn"> |
|
|
|
<button class="btn btn-default" type="button" @click="changeQuantityProductSubscription(true, product)"><span class="glyphicon glyphicon-plus"></span></button> |
|
|
|
</span> |
|
|
|
<button class="btn btn-default" type="button" @click="changeQuantityProductSubscription(true, product)"><span class="glyphicon glyphicon-plus"></span></button> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</tr> |