remove lock file

This commit is contained in:
tzw
2024-01-30 17:30:40 +06:30
4 changed files with 33 additions and 1395 deletions

View File

@@ -344,6 +344,8 @@
"FCSshipment.popupmenu.all":"All shipments", "FCSshipment.popupmenu.all":"All shipments",
"FCSshipment.popupmenu.active":"Active shipments", "FCSshipment.popupmenu.active":"Active shipments",
"FCSshipment.popupmenu.shipped":"Shipped shipments", "FCSshipment.popupmenu.shipped":"Shipped shipments",
"FCSshipment.carton":"Cartons",
"FCSshipment.package":"Packages",
"FCS Shipment End ================================================================":"", "FCS Shipment End ================================================================":"",
"Shipment Start ================================================================":"", "Shipment Start ================================================================":"",

View File

@@ -343,6 +343,8 @@
"FCSshipment.popupmenu.all":"All shipments", "FCSshipment.popupmenu.all":"All shipments",
"FCSshipment.popupmenu.active":"Active shipments", "FCSshipment.popupmenu.active":"Active shipments",
"FCSshipment.popupmenu.shipped":"Shipped shipments", "FCSshipment.popupmenu.shipped":"Shipped shipments",
"FCSshipment.carton":"FCS ပုံးများ",
"FCSshipment.package":"FCS အထုပ်",
"FCS Shipment End ================================================================":"", "FCS Shipment End ================================================================":"",
"Shipment Start ================================================================":"", "Shipment Start ================================================================":"",

View File

@@ -73,11 +73,11 @@ class _FcsShipmentInfoState extends State<FcsShipmentInfo> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final shipmentNumberBox = DisplayText( // final shipmentNumberBox = DisplayText(
text: _shipmentNumberController.text, // text: _shipmentNumberController.text,
labelTextKey: "FCSshipment.number", // labelTextKey: "FCSshipment.number",
iconData: Ionicons.ios_airplane, // iconData: Ionicons.ios_airplane,
); // );
final cutoffDateDBox = DisplayText( final cutoffDateDBox = DisplayText(
text: _cutoffDateController.text, text: _cutoffDateController.text,
labelTextKey: "FCSshipment.cutoff_date", labelTextKey: "FCSshipment.cutoff_date",
@@ -88,6 +88,16 @@ class _FcsShipmentInfoState extends State<FcsShipmentInfo> {
labelTextKey: "FCSshipment.ETA", labelTextKey: "FCSshipment.ETA",
iconData: Icons.date_range, iconData: Icons.date_range,
); );
final cartonBox = DisplayText(
//text: _arrivalDateController.text,
labelTextKey: "FCSshipment.carton",
iconData: MaterialCommunityIcons.package,
);
final packageBox = DisplayText(
//text: _arrivalDateController.text,
labelTextKey: "FCSshipment.package",
iconData: Octicons.package,
);
// final departureDateBox = DisplayText( // final departureDateBox = DisplayText(
// text: _departureDateControler.text, // text: _departureDateControler.text,
@@ -122,7 +132,7 @@ class _FcsShipmentInfoState extends State<FcsShipmentInfo> {
final statusBox = DisplayText( final statusBox = DisplayText(
text: _statusController.text, text: _statusController.text,
labelTextKey: "FCSshipment.status", labelTextKey: "FCSshipment.status",
iconData: Icons.av_timer, iconData: Ionicons.md_chevron_back_circle_outline,
); );
final shipBtn = LocalButton( final shipBtn = LocalButton(
@@ -134,7 +144,7 @@ class _FcsShipmentInfoState extends State<FcsShipmentInfo> {
inAsyncCall: _isLoading, inAsyncCall: _isLoading,
child: Scaffold( child: Scaffold(
appBar: LocalAppBar( appBar: LocalAppBar(
labelKey: "FCSshipment.form.title", titleWidget: Text(_shipmentNumberController.text,style:TextStyle(fontSize: 20,color: primaryColor)),
backgroundColor: Colors.white, backgroundColor: Colors.white,
labelColor: primaryColor, labelColor: primaryColor,
arrowColor: primaryColor, arrowColor: primaryColor,
@@ -143,7 +153,7 @@ class _FcsShipmentInfoState extends State<FcsShipmentInfo> {
icon: Icon(Icons.edit, color: primaryColor), icon: Icon(Icons.edit, color: primaryColor),
onPressed: _edit, onPressed: _edit,
), ),
menuPopWidget(context) //menuPopWidget(context)
], ],
), ),
// appBar: AppBar( // appBar: AppBar(
@@ -176,15 +186,21 @@ class _FcsShipmentInfoState extends State<FcsShipmentInfo> {
child: Padding( child: Padding(
padding: const EdgeInsets.all(10.0), padding: const EdgeInsets.all(10.0),
child: ListView(children: <Widget>[ child: ListView(children: <Widget>[
shipmentNumberBox, //shipmentNumberBox,
cutoffDateDBox, statusBox,
Row(mainAxisAlignment: MainAxisAlignment.end,
children:[Expanded(child: cutoffDateDBox,flex: 2,),
Expanded(child: etaBox,),
]),
// departureDateBox, // departureDateBox,
etaBox, Row(children: [ Expanded(child: cartonBox,flex: 2,),
shipTypeBox, Flexible(child: packageBox),],),
shipTypeBox,
consigneeBox, consigneeBox,
portBox, portBox,
destinationBox, destinationBox,
statusBox,
_fcsShipment?.status == fcs_shipment_confirmed_status _fcsShipment?.status == fcs_shipment_confirmed_status
? shipBtn ? shipBtn
: Container(), : Container(),

File diff suppressed because it is too large Load Diff