浏览代码

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

feature/souke
Guillaume Bourgeois 1年前
父节点
当前提交
9a18f1edfb
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      backend/views/distribution/index.php

+ 4
- 1
backend/views/distribution/index.php 查看文件

@@ -694,7 +694,10 @@ $this->setPageTitle('Distributions') ;
<span class="label label-success" v-if="loadingUpdateProductOrder || order.productOrder[product.id].active">Actif</span>
<span class="label label-danger" v-else>Inactif</span>
</td>
<td>{{ product.name }}</td>
<td>
{{ product.name }}
<template v-if="product.weight">({{ product.weight }} g)</template>
</td>
<td class="price">
<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" />

正在加载...
取消
保存