add shipment in processing, update package, processing and receiving

This commit is contained in:
tzw
2025-03-06 17:59:15 +06:30
parent 9e6b288970
commit e75eacd1f9
20 changed files with 746 additions and 603 deletions

View File

@@ -51,7 +51,7 @@ class StatusTree extends StatelessWidget {
children: <Widget>[
Text(
'Status',
style: TextStyle(color: primaryColor, fontWeight: FontWeight.bold),
style: TextStyle(color: primaryColor, fontSize: 17),
),
Container(
child: Timeline.builder(
@@ -76,16 +76,20 @@ class StatusTree extends StatelessWidget {
Text(e.status,
style: TextStyle(
color: e.done! ? primaryColor : Colors.grey,
fontSize: 16,
fontSize: 15,
fontWeight: FontWeight.bold)),
e.done! || isPacked
? e.date != null
? Text(dateFormatter.format(e.date!))
? Text(
dateFormatter.format(e.date!),
style: TextStyle(fontSize: 13),
)
: const SizedBox()
: Container(),
e.staffName == null
? Container()
: Text(e.staffName!)
: Text(e.staffName!,
style: TextStyle(fontSize: 13))
],
),
),