ticket.sale now shows Packing type

This commit is contained in:
Carlos Jimenez Ruiz 2021-06-16 17:06:11 +02:00
parent 2a1a0a3244
commit 7370269e4d
4 changed files with 11 additions and 2 deletions

View File

@ -117,6 +117,9 @@
"value10": {
"type": "string"
},
"itemPackingTypeFk": {
"type": "string"
},
"compression": {
"type": "number"
},

View File

@ -11,7 +11,7 @@ module.exports = Self => {
http: {source: 'path'}
}],
returns: {
type: ['Object'],
type: ['object'],
root: true
},
http: {
@ -35,6 +35,7 @@ module.exports = Self => {
fields: [
'id',
'name',
'itemPackingTypeFk',
'tag5',
'value5',
'tag6',

View File

@ -63,6 +63,7 @@
<vn-th shrink id="ticketId">Id</vn-th>
<vn-th shrink>Quantity</vn-th>
<vn-th>Item</vn-th>
<vn-th>Packing type</vn-th>
<vn-th number>Price</vn-th>
<vn-th number>Disc</vn-th>
<vn-th number>Amount</vn-th>
@ -168,6 +169,9 @@
</vn-textfield>
</field>
</vn-td-editable>
<vn-td>
{{::sale.item.itemPackingTypeFk == 'H' ? 'Horizontal' : (sale.item.itemPackingTypeFk == 'V' ? 'Vertical' : '-')}}
</vn-td>
<vn-td number>
<span ng-class="{'link': $ctrl.isEditable}"
translate-attr="{title: $ctrl.isEditable ? 'Edit price' : ''}"

View File

@ -34,4 +34,5 @@ Recalculate price: Recalcular precio
Address: Dirección
Warehouse: Almacen
Agency: Agencia
Shipped: F. envio
Shipped: F. envio
Packing type: Forma de encajado