update carton and add staff name

This commit is contained in:
Thinzar Win
2020-12-10 20:06:15 +06:30
parent d540bfbd30
commit d1261a33c1
19 changed files with 1030 additions and 330 deletions

View File

@@ -79,7 +79,7 @@ class _CargoTableState extends State<CargoTable> {
style: textStyle,
),
new Text(
c.qty == null ? "" : " x ${c.qty.toString()}",
c.qty == null || c.qty == 0 ? "" : " x ${c.qty.toString()}",
style: TextStyle(color: Colors.grey),
),
],