Browse Source

[Admin] Distributions > formulaire commande : ajouter le poids au nom des produits #1458

feature/souke
Guillaume Bourgeois 1 year ago
parent
commit
9a18f1edfb
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      backend/views/distribution/index.php

+ 4
- 1
backend/views/distribution/index.php View File

<span class="label label-success" v-if="loadingUpdateProductOrder || order.productOrder[product.id].active">Actif</span> <span class="label label-success" v-if="loadingUpdateProductOrder || order.productOrder[product.id].active">Actif</span>
<span class="label label-danger" v-else>Inactif</span> <span class="label label-danger" v-else>Inactif</span>
</td> </td>
<td>{{ product.name }}</td>
<td>
{{ product.name }}
<template v-if="product.weight">({{ product.weight }} g)</template>
</td>
<td class="price"> <td class="price">
<div v-show="vatMode == 'all'" class="input-group"> <div v-show="vatMode == 'all'" class="input-group">
<input type="text" v-model="order.productOrder[product.id].price" class="form-control input-sm" @change="productPriceChange" :data-with-tax="false" :data-id-product="product.id" /> <input type="text" v-model="order.productOrder[product.id].price" class="form-control input-sm" @change="productPriceChange" :data-with-tax="false" :data-id-product="product.id" />

Loading…
Cancel
Save