Quellcode durchsuchen

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

feature/souke
Guillaume Bourgeois vor 1 Jahr
Ursprung
Commit
9a18f1edfb
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen
  1. +4
    -1
      backend/views/distribution/index.php

+ 4
- 1
backend/views/distribution/index.php Datei anzeigen

@@ -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" />

Laden…
Abbrechen
Speichern