102 lines
2.5 KiB
Dart
102 lines
2.5 KiB
Dart
import 'package:cloud_firestore/cloud_firestore.dart';
|
|
import 'package:fcs/fcs/common/domain/vo/shipment_status.dart';
|
|
|
|
class Package {
|
|
String id;
|
|
String trackingID;
|
|
String userID;
|
|
String fcsID;
|
|
String userName;
|
|
String phoneNumber;
|
|
String currentStatus;
|
|
DateTime currentStatusDate;
|
|
List<Map<String, dynamic>> allStatus;
|
|
List<String> photoUrls;
|
|
|
|
String status;
|
|
String shipmentNumber;
|
|
String senderFCSID;
|
|
String senderName;
|
|
String receiverFCSID;
|
|
String receiverName;
|
|
String receiverAddress;
|
|
String receiverNumber;
|
|
String boxNumber;
|
|
String cargoDesc;
|
|
String market;
|
|
|
|
int rate;
|
|
int weight;
|
|
String packageType;
|
|
String pickUpID;
|
|
List<String> photos;
|
|
String remark;
|
|
DateTime arrivedDate;
|
|
|
|
int get amount => rate != null && weight != null ? rate * weight : 0;
|
|
|
|
String get packageNumber =>
|
|
shipmentNumber + "-" + receiverNumber + " #" + boxNumber;
|
|
double get price => rate.toDouble() * weight;
|
|
|
|
List<ShipmentStatus> shipmentHistory;
|
|
|
|
Package({
|
|
this.id,
|
|
this.trackingID,
|
|
this.userID,
|
|
this.userName,
|
|
this.fcsID,
|
|
this.phoneNumber,
|
|
this.shipmentNumber,
|
|
this.senderFCSID,
|
|
this.senderName,
|
|
this.receiverFCSID,
|
|
this.receiverName,
|
|
this.receiverNumber,
|
|
this.receiverAddress,
|
|
this.boxNumber,
|
|
this.rate,
|
|
this.weight,
|
|
this.packageType,
|
|
this.pickUpID,
|
|
this.remark,
|
|
this.status,
|
|
this.arrivedDate,
|
|
this.cargoDesc,
|
|
this.market,
|
|
this.shipmentHistory,
|
|
this.allStatus,
|
|
this.currentStatus,
|
|
this.currentStatusDate,
|
|
this.photoUrls,
|
|
});
|
|
|
|
factory Package.fromMap(Map<String, dynamic> map, String docID) {
|
|
var _currentStatusDate = (map['current_status_date'] as Timestamp);
|
|
|
|
List<Map<String, dynamic>> _allStatus = List.from(map['all_status'])
|
|
.map((e) => Map<String, dynamic>.from(e))
|
|
.toList();
|
|
List<String> _photoUrls =
|
|
map['photo_urls'] == null ? [] : map['photo_urls'].cast<List<String>>();
|
|
|
|
return Package(
|
|
id: docID,
|
|
userID: map['user_id'],
|
|
fcsID: map['fcs_id'],
|
|
trackingID: map['tracking_id'],
|
|
market: map['market'],
|
|
userName: map['user_name'],
|
|
phoneNumber: map['phone_number'],
|
|
currentStatus: map['current_status'],
|
|
currentStatusDate:
|
|
_currentStatusDate != null ? _currentStatusDate.toDate() : null,
|
|
photoUrls: _photoUrls,
|
|
allStatus: _allStatus);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() =>
|
|
{'id': id, 'tracking_id': trackingID, 'market': market, 'fcs_id': fcsID};
|
|
}
|