add shipment in processing, update package, processing and receiving
This commit is contained in:
@@ -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))
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user