add payment

This commit is contained in:
Sai Naw Wun
2020-10-28 05:11:06 +06:30
parent 2786acfd08
commit d5c2407545
28 changed files with 740 additions and 601 deletions

View File

@@ -13,6 +13,7 @@ class FcsShipment {
String port;
String destination;
String status;
String reportName;
FcsShipment({
this.id,
this.shipmentNumber,
@@ -24,6 +25,7 @@ class FcsShipment {
this.consignee,
this.port,
this.destination,
this.reportName,
});
factory FcsShipment.fromMap(Map<String, dynamic> map, String docID) {
@@ -57,6 +59,7 @@ class FcsShipment {
'port': port,
'destination': destination,
'status': status,
'report_name': reportName,
};
}