@@ -207,6 +210,7 @@
{{::buy.weight}} |
{{::buy.packageFk}} |
{{::buy.packingOut}} |
+ {{::buy.landing | date: 'dd/MM/yyyy'}} |
diff --git a/modules/entry/front/latest-buys/index.js b/modules/entry/front/latest-buys/index.js
index e899c50fa..ed6629262 100644
--- a/modules/entry/front/latest-buys/index.js
+++ b/modules/entry/front/latest-buys/index.js
@@ -76,7 +76,8 @@ export default class Controller extends Section {
{field: 'description', displayName: this.$t('Description')},
{field: 'size', displayName: this.$t('Size')},
{field: 'density', displayName: this.$t('Density')},
- {field: 'packingOut', displayName: this.$t('PackingOut')}
+ {field: 'packingOut', displayName: this.$t('PackingOut')},
+ {field: 'landing', displayName: this.$t('Landing')}
];
return this._columns;
@@ -112,6 +113,8 @@ export default class Controller extends Section {
return {'intr.description': value};
case 'origin':
return {'ori.code': value};
+ case 'landing':
+ return {[`lb.${param}`]: value};
case 'packing':
case 'grouping':
case 'quantity':