Merge branch 'master' of sma/fcs into master

This commit is contained in:
tzw
2024-02-13 17:48:25 +06:30
committed by Gogs
2 changed files with 3 additions and 21 deletions

View File

@@ -331,7 +331,7 @@
"box.select.cartion":"Select cartons",
"box.no_carton":"There is no cartons in this shipment.",
"box.crete.carton":"Create carton",
"box.carton.type":"Carton type",
"box.carton.type":"ပုံး အမျိုးအစား",
"box.select.delivery":"Select delivery type",
"box.select.package":"Select packages",
"box.no_package":"There is no packages.",

View File

@@ -248,7 +248,7 @@ class _CartonInfoState extends State<CartonInfo> {
//),
Container(
child: Padding(
padding: const EdgeInsets.only(right: 50),
padding: const EdgeInsets.only(right: 60),
child: Column(
children: [
Column(
@@ -273,25 +273,7 @@ class _CartonInfoState extends State<CartonInfo> {
);
}).toList()),
const SizedBox(height: 10),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: _surchareItems.map((e) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 3),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
e.name ?? "",
style: TextStyle(color: labelColor, fontSize: 15),
),
Text("${numberFormatter.format(e.qty)} pc",
style:
TextStyle(color: labelColor, fontSize: 15))
],
),
);
}).toList()),
],
),
),