From 95d6e41c813347a5cd89674980f2535a959dca4c Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 19 Oct 2023 14:39:01 -0500 Subject: [PATCH] Use columns instead of table, for row receiving quantities --- src/components/receiving/ByjoveReceiving.vue | 106 +++++++++---------- 1 file changed, 50 insertions(+), 56 deletions(-) diff --git a/src/components/receiving/ByjoveReceiving.vue b/src/components/receiving/ByjoveReceiving.vue index c77fea4..1a9d040 100644 --- a/src/components/receiving/ByjoveReceiving.vue +++ b/src/components/receiving/ByjoveReceiving.vue @@ -30,62 +30,6 @@ 1 CS = {{ row.case_quantity || 1 }} {{ row.unit_uom }}

- - - - - - - - - - - - - - - - - - - - - - - - - -
ordered - - {{ row.cases_ordered || 0}} / - - {{ row.units_ordered || 0}} -
shipped - - {{ row.cases_shipped || 0}} / - - {{ row.units_shipped || 0}} -
received - - {{ row.cases_received || 0}} / - - {{ row.units_received || 0}} -
damaged - - {{ row.cases_damaged || 0}} / - - {{ row.units_damaged || 0}} -
expired - - {{ row.cases_expired || 0}} / - - {{ row.units_expired || 0}} -
missing - - {{ row.cases_missing || 0}} / - - {{ row.units_missing || 0}} -
@@ -93,6 +37,56 @@
+
+ +
+ +
+ ordered + {{ row.cases_ordered || 0 }} / + {{ row.units_ordered || 0}} +
+ +
+ shipped + {{ row.cases_shipped || 0 }} / + {{ row.units_shipped || 0}} +
+ +
+ received + {{ row.cases_received || 0 }} / + {{ row.units_received || 0}} +
+
+ +
+ +
+ damaged + {{ row.cases_damaged || 0 }} / + {{ row.units_damaged || 0}} +
+ +
+ expired + {{ row.cases_expired || 0 }} / + {{ row.units_expired || 0}} +
+ +
+ missing + {{ row.cases_missing || 0 }} / + {{ row.units_missing || 0}} +
+ +
+ +
+