update rate
This commit is contained in:
@@ -334,7 +334,7 @@
|
|||||||
"rate":"Rates",
|
"rate":"Rates",
|
||||||
"rate.title":"Rates",
|
"rate.title":"Rates",
|
||||||
"rate.edit.title":"Edit rates",
|
"rate.edit.title":"Edit rates",
|
||||||
"rate.cal.title":"Estimate Shipping Cost",
|
"rate.cal.title":"Calculate Shipping Cost",
|
||||||
"rate.min_weight":"Min weight for free delivery within yangon",
|
"rate.min_weight":"Min weight for free delivery within yangon",
|
||||||
"rate.delivery_fee":"Delivery fees",
|
"rate.delivery_fee":"Delivery fees",
|
||||||
"rate.volumetric_ratio":"Volumetric ratio",
|
"rate.volumetric_ratio":"Volumetric ratio",
|
||||||
@@ -343,6 +343,11 @@
|
|||||||
"rate.custom.fee":"Fee",
|
"rate.custom.fee":"Fee",
|
||||||
"rate.discount.weight":"Weight",
|
"rate.discount.weight":"Weight",
|
||||||
"rate.discount.rate":"Discount rate",
|
"rate.discount.rate":"Discount rate",
|
||||||
|
"rate.custom_duty.title":"Custom Duties",
|
||||||
|
"rate.custom_duty":"Custom Duty",
|
||||||
|
"rate.discount_by_weight":"Discounts by weight",
|
||||||
|
"rate.discount_by_weight.edit.delete.confirm":"Delete this discount by weight?",
|
||||||
|
"rate.custom.edit.delete.confirm":"Delete this custom duty?",
|
||||||
"Rate End ================================================================":"",
|
"Rate End ================================================================":"",
|
||||||
|
|
||||||
"Cargo Start ================================================================":"",
|
"Cargo Start ================================================================":"",
|
||||||
@@ -351,6 +356,7 @@
|
|||||||
"cargo.weight":"Weight",
|
"cargo.weight":"Weight",
|
||||||
"cargo.rate":"Rate",
|
"cargo.rate":"Rate",
|
||||||
"cargo.amount":"Amount",
|
"cargo.amount":"Amount",
|
||||||
|
"cargo.edit.delete.confirm":"Delete this cargo type?",
|
||||||
"Cargo End ================================================================":"",
|
"Cargo End ================================================================":"",
|
||||||
|
|
||||||
"Invoices Start ================================================================":"",
|
"Invoices Start ================================================================":"",
|
||||||
@@ -393,6 +399,8 @@
|
|||||||
"invoice.pdf": "Invoice PDF",
|
"invoice.pdf": "Invoice PDF",
|
||||||
"invoice.total_custom_fee":"Total custom fee",
|
"invoice.total_custom_fee":"Total custom fee",
|
||||||
"invoice.shipment_weight":"Shipment weight",
|
"invoice.shipment_weight":"Shipment weight",
|
||||||
|
"invoice.popupmenu.pending":"Pending",
|
||||||
|
"invoice.popupmenu.paid":"Paid",
|
||||||
"Invoices End ================================================================":"",
|
"Invoices End ================================================================":"",
|
||||||
|
|
||||||
"Discount Start ================================================================":"",
|
"Discount Start ================================================================":"",
|
||||||
|
|||||||
@@ -343,6 +343,11 @@
|
|||||||
"rate.custom.fee":"အခကြေးငွေ",
|
"rate.custom.fee":"အခကြေးငွေ",
|
||||||
"rate.discount.weight":"အလေးချိန်",
|
"rate.discount.weight":"အလေးချိန်",
|
||||||
"rate.discount.rate":"လျှော့စျေးနှုန်း",
|
"rate.discount.rate":"လျှော့စျေးနှုန်း",
|
||||||
|
"rate.custom_duty.title":"Custom Duties",
|
||||||
|
"rate.custom_duty":"Custom Duty",
|
||||||
|
"rate.discount_by_weight":"Discounts by weight",
|
||||||
|
"rate.discount_by_weight.edit.delete.confirm":"Delete this discount by weight?",
|
||||||
|
"rate.custom.edit.delete.confirm":"Delete this custom duty?",
|
||||||
"Rate End ================================================================":"",
|
"Rate End ================================================================":"",
|
||||||
|
|
||||||
"Cargo Start ================================================================":"",
|
"Cargo Start ================================================================":"",
|
||||||
@@ -393,6 +398,8 @@
|
|||||||
"invoice.pdf": "Invoice PDF",
|
"invoice.pdf": "Invoice PDF",
|
||||||
"invoice.total_custom_fee":"အခွန်စုစုပေါင်း",
|
"invoice.total_custom_fee":"အခွန်စုစုပေါင်း",
|
||||||
"invoice.shipment_weight":"Shipment weight",
|
"invoice.shipment_weight":"Shipment weight",
|
||||||
|
"invoice.popupmenu.pending":"Pending",
|
||||||
|
"invoice.popupmenu.paid":"Paid",
|
||||||
"Invoices End ================================================================":"",
|
"Invoices End ================================================================":"",
|
||||||
|
|
||||||
"Discount Start ================================================================":"",
|
"Discount Start ================================================================":"",
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
class Discount {
|
class Discount {
|
||||||
|
String id;
|
||||||
String code;
|
String code;
|
||||||
String customer;
|
String customer;
|
||||||
String status;
|
String status;
|
||||||
@@ -7,7 +8,8 @@ class Discount {
|
|||||||
double discountRate;
|
double discountRate;
|
||||||
|
|
||||||
Discount(
|
Discount(
|
||||||
{this.code,
|
{this.id,
|
||||||
|
this.code,
|
||||||
this.customer,
|
this.customer,
|
||||||
this.amount,
|
this.amount,
|
||||||
this.status,
|
this.status,
|
||||||
|
|||||||
@@ -99,11 +99,12 @@ class _CargoTypeEditorState extends State<CargoTypeEditor> {
|
|||||||
)),
|
)),
|
||||||
body: Container(
|
body: Container(
|
||||||
padding: EdgeInsets.all(18),
|
padding: EdgeInsets.all(18),
|
||||||
child: ListView(
|
child: Column(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
cargoTypeBox,
|
cargoTypeBox,
|
||||||
rateBox,
|
rateBox,
|
||||||
SizedBox(height: 40),
|
SizedBox(height: 40),
|
||||||
|
Spacer(),
|
||||||
saveBtn,
|
saveBtn,
|
||||||
SizedBox(height: 20),
|
SizedBox(height: 20),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
import 'package:fcs/domain/entities/discount.dart';
|
import 'package:fcs/domain/entities/discount.dart';
|
||||||
import 'package:fcs/helpers/theme.dart';
|
import 'package:fcs/helpers/theme.dart';
|
||||||
import 'package:fcs/localization/app_translations.dart';
|
import 'package:fcs/localization/app_translations.dart';
|
||||||
|
import 'package:fcs/pages/discount/model/discount_model.dart';
|
||||||
import 'package:fcs/pages/main/util.dart';
|
import 'package:fcs/pages/main/util.dart';
|
||||||
|
import 'package:fcs/pages/rates/model/shipment_rate_model.dart';
|
||||||
import 'package:fcs/pages/widgets/display_text.dart';
|
import 'package:fcs/pages/widgets/display_text.dart';
|
||||||
import 'package:fcs/pages/widgets/input_text.dart';
|
import 'package:fcs/pages/widgets/input_text.dart';
|
||||||
import 'package:fcs/pages/widgets/progress.dart';
|
import 'package:fcs/pages/widgets/progress.dart';
|
||||||
@@ -9,6 +11,7 @@ import 'package:flutter/cupertino.dart';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_icons/flutter_icons.dart';
|
import 'package:flutter_icons/flutter_icons.dart';
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class DiscountEditor extends StatefulWidget {
|
class DiscountEditor extends StatefulWidget {
|
||||||
final Discount discount;
|
final Discount discount;
|
||||||
@@ -26,7 +29,7 @@ class _DiscountEditorState extends State<DiscountEditor> {
|
|||||||
TextEditingController _statusController = new TextEditingController();
|
TextEditingController _statusController = new TextEditingController();
|
||||||
TextEditingController _customerController = new TextEditingController();
|
TextEditingController _customerController = new TextEditingController();
|
||||||
|
|
||||||
bool isNew = false;
|
bool _isNew = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
@@ -38,7 +41,7 @@ class _DiscountEditorState extends State<DiscountEditor> {
|
|||||||
_statusController.text = _discount.status;
|
_statusController.text = _discount.status;
|
||||||
_customerController.text = 'Ko Nyi';
|
_customerController.text = 'Ko Nyi';
|
||||||
} else {
|
} else {
|
||||||
isNew = true;
|
_isNew = true;
|
||||||
_customerController.text = '';
|
_customerController.text = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -49,17 +52,20 @@ class _DiscountEditorState extends State<DiscountEditor> {
|
|||||||
labelTextKey: 'discount.code',
|
labelTextKey: 'discount.code',
|
||||||
iconData: FontAwesomeIcons.algolia,
|
iconData: FontAwesomeIcons.algolia,
|
||||||
controller: _codeController);
|
controller: _codeController);
|
||||||
|
|
||||||
final nameBox = InputText(
|
final nameBox = InputText(
|
||||||
labelTextKey: 'discount.name',
|
labelTextKey: 'discount.name',
|
||||||
iconData: Feather.user,
|
iconData: Feather.user,
|
||||||
controller: _customerController);
|
controller: _customerController);
|
||||||
|
|
||||||
final amountBox = InputText(
|
final amountBox = InputText(
|
||||||
labelTextKey: 'discount.amount',
|
labelTextKey: 'discount.amount',
|
||||||
iconData: FontAwesomeIcons.moneyBill,
|
iconData: FontAwesomeIcons.moneyBill,
|
||||||
controller: _amountController);
|
controller: _amountController);
|
||||||
|
|
||||||
final statusBox = DisplayText(
|
final statusBox = DisplayText(
|
||||||
text: _statusController.text,
|
text: _statusController.text,
|
||||||
labelTextKey: getLocalString(context, "discount.status"),
|
labelTextKey: "discount.status",
|
||||||
iconData: Icons.av_timer,
|
iconData: Icons.av_timer,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -77,10 +83,15 @@ class _DiscountEditorState extends State<DiscountEditor> {
|
|||||||
onPressed: () => Navigator.of(context).pop(),
|
onPressed: () => Navigator.of(context).pop(),
|
||||||
),
|
),
|
||||||
backgroundColor: primaryColor,
|
backgroundColor: primaryColor,
|
||||||
actions: <Widget>[],
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.delete),
|
||||||
|
onPressed: _delete,
|
||||||
|
)
|
||||||
|
],
|
||||||
),
|
),
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: const EdgeInsets.only(left: 20.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Expanded(
|
Expanded(
|
||||||
@@ -98,35 +109,8 @@ class _DiscountEditorState extends State<DiscountEditor> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
widget.discount == null
|
fcsButton(context, getLocalString(context, "btn.save"),
|
||||||
? Align(
|
callack: _save),
|
||||||
alignment: Alignment.bottomCenter,
|
|
||||||
child: Center(
|
|
||||||
child: Container(
|
|
||||||
width: 250,
|
|
||||||
child: FlatButton(
|
|
||||||
child: Text('Add Discount'),
|
|
||||||
color: primaryColor,
|
|
||||||
textColor: Colors.white,
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pop(context);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
)))
|
|
||||||
: Align(
|
|
||||||
alignment: Alignment.bottomCenter,
|
|
||||||
child: Center(
|
|
||||||
child: Container(
|
|
||||||
width: 250,
|
|
||||||
child: FlatButton(
|
|
||||||
child: Text('Save box'),
|
|
||||||
color: primaryColor,
|
|
||||||
textColor: Colors.white,
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pop(context);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
))),
|
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 30,
|
height: 30,
|
||||||
)
|
)
|
||||||
@@ -135,4 +119,53 @@ class _DiscountEditorState extends State<DiscountEditor> {
|
|||||||
)),
|
)),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_save() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
DiscountModel discountModel =
|
||||||
|
Provider.of<DiscountModel>(context, listen: false);
|
||||||
|
Discount _discount = Discount(
|
||||||
|
code: _codeController.text,
|
||||||
|
customer: _customerController.text,
|
||||||
|
amount: double.parse(_amountController.text));
|
||||||
|
if (_isNew) {
|
||||||
|
await discountModel.addDiscount(_discount);
|
||||||
|
} else {
|
||||||
|
_discount.id = widget.discount.id;
|
||||||
|
await discountModel.updateDiscount(_discount);
|
||||||
|
}
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_delete() {
|
||||||
|
showConfirmDialog(
|
||||||
|
context, "cargo_type.edit.delete.confirm", _deleteCargoType);
|
||||||
|
}
|
||||||
|
|
||||||
|
_deleteCargoType() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var discountModel = Provider.of<DiscountModel>(context, listen: false);
|
||||||
|
await discountModel.deleteCargoType(widget.discount.id);
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,16 @@ class DiscountList extends StatefulWidget {
|
|||||||
|
|
||||||
class _DiscountListState extends State<DiscountList> {
|
class _DiscountListState extends State<DiscountList> {
|
||||||
bool _isLoading = false;
|
bool _isLoading = false;
|
||||||
|
bool _selected = false;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
if (widget.selected != null) {
|
||||||
|
_selected = widget.selected;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
var discountModel = Provider.of<DiscountModel>(context);
|
var discountModel = Provider.of<DiscountModel>(context);
|
||||||
@@ -53,7 +63,7 @@ class _DiscountListState extends State<DiscountList> {
|
|||||||
var discount = discountModel.discounts[index];
|
var discount = discountModel.discounts[index];
|
||||||
return InkWell(
|
return InkWell(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
widget.selected
|
_selected
|
||||||
? Navigator.pop(context, discount)
|
? Navigator.pop(context, discount)
|
||||||
: Navigator.push(
|
: Navigator.push(
|
||||||
context,
|
context,
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
import 'dart:ffi';
|
||||||
|
|
||||||
|
import 'package:fcs/data/services/services.dart';
|
||||||
import 'package:fcs/domain/entities/discount.dart';
|
import 'package:fcs/domain/entities/discount.dart';
|
||||||
import 'package:fcs/pages/main/model/base_model.dart';
|
import 'package:fcs/pages/main/model/base_model.dart';
|
||||||
|
|
||||||
@@ -38,13 +41,6 @@ class DiscountModel extends BaseModel {
|
|||||||
return discountList;
|
return discountList;
|
||||||
}
|
}
|
||||||
|
|
||||||
// List<Discount> get discountByCustomer {
|
|
||||||
// return invoices.where((e) => e.status == "Avaliable").toList()
|
|
||||||
// ..sort((e1, e2) {
|
|
||||||
// return e2.invoiceNumber.compareTo(e1.invoiceNumber);
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
|
|
||||||
void initUser(user) {
|
void initUser(user) {
|
||||||
super.initUser(user);
|
super.initUser(user);
|
||||||
}
|
}
|
||||||
@@ -53,4 +49,10 @@ class DiscountModel extends BaseModel {
|
|||||||
logout() async {
|
logout() async {
|
||||||
// discounts = [];
|
// discounts = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> addDiscount(Discount discount) {}
|
||||||
|
|
||||||
|
Future<void> updateDiscount(Discount discount) {}
|
||||||
|
|
||||||
|
Future<void> deleteCargoType(String id) {}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ import 'package:fcs/pages/package_search/package_serach.dart';
|
|||||||
import 'package:fcs/pages/shipment/shipment_list.dart';
|
import 'package:fcs/pages/shipment/shipment_list.dart';
|
||||||
import 'package:fcs/pages/user_search/user_serach.dart';
|
import 'package:fcs/pages/user_search/user_serach.dart';
|
||||||
import 'package:fcs/pages/widgets/bottom_up_page_route.dart';
|
import 'package:fcs/pages/widgets/bottom_up_page_route.dart';
|
||||||
|
import 'package:fcs/pages/widgets/local_popup_menu_button.dart';
|
||||||
|
import 'package:fcs/pages/widgets/local_popupmenu.dart';
|
||||||
import 'package:fcs/pages/widgets/local_text.dart';
|
import 'package:fcs/pages/widgets/local_text.dart';
|
||||||
import 'package:fcs/pages/widgets/progress.dart';
|
import 'package:fcs/pages/widgets/progress.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
@@ -40,6 +42,17 @@ class _InvoiceListState extends State<InvoiceList> {
|
|||||||
var owner = true;
|
var owner = true;
|
||||||
var invoiceModel = Provider.of<InvoiceModel>(context);
|
var invoiceModel = Provider.of<InvoiceModel>(context);
|
||||||
|
|
||||||
|
final popupMenu = LocalPopupMenuButton(
|
||||||
|
popmenus: [
|
||||||
|
LocalPopupMenu(
|
||||||
|
id: 1, textKey: "invoice.popupmenu.pending", selected: true),
|
||||||
|
LocalPopupMenu(id: 2, textKey: "invoice.popupmenu.paid")
|
||||||
|
],
|
||||||
|
popupMenuCallback: (p) => this.setState(() {
|
||||||
|
// _showDelivered = p.id == 2;
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
return LocalProgress(
|
return LocalProgress(
|
||||||
inAsyncCall: _isLoading,
|
inAsyncCall: _isLoading,
|
||||||
child: DefaultTabController(
|
child: DefaultTabController(
|
||||||
@@ -58,6 +71,7 @@ class _InvoiceListState extends State<InvoiceList> {
|
|||||||
IconButton(
|
IconButton(
|
||||||
icon: Icon(Icons.search, color: Colors.white),
|
icon: Icon(Icons.search, color: Colors.white),
|
||||||
onPressed: () {}),
|
onPressed: () {}),
|
||||||
|
popupMenu
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
floatingActionButton: owner
|
floatingActionButton: owner
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ import 'package:fcs/pages/widgets/input_text.dart';
|
|||||||
import 'package:fcs/pages/widgets/progress.dart';
|
import 'package:fcs/pages/widgets/progress.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
import 'model/shipment_rate_model.dart';
|
||||||
|
|
||||||
class CargoEditor extends StatefulWidget {
|
class CargoEditor extends StatefulWidget {
|
||||||
final CargoType cargo;
|
final CargoType cargo;
|
||||||
@@ -21,6 +24,8 @@ class _CargoEditorState extends State<CargoEditor> {
|
|||||||
|
|
||||||
bool _isLoading = false;
|
bool _isLoading = false;
|
||||||
CargoType _cargo;
|
CargoType _cargo;
|
||||||
|
bool _isNew = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
@@ -28,6 +33,8 @@ class _CargoEditorState extends State<CargoEditor> {
|
|||||||
_cargo = widget.cargo;
|
_cargo = widget.cargo;
|
||||||
_descController.text = _cargo.name;
|
_descController.text = _cargo.name;
|
||||||
_rateController.text = _cargo.rate.toString();
|
_rateController.text = _cargo.rate.toString();
|
||||||
|
} else {
|
||||||
|
_isNew = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -57,6 +64,12 @@ class _CargoEditorState extends State<CargoEditor> {
|
|||||||
),
|
),
|
||||||
backgroundColor: primaryColor,
|
backgroundColor: primaryColor,
|
||||||
title: Text(AppTranslations.of(context).text("cargo.form.title")),
|
title: Text(AppTranslations.of(context).text("cargo.form.title")),
|
||||||
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.delete),
|
||||||
|
onPressed: _delete,
|
||||||
|
)
|
||||||
|
],
|
||||||
),
|
),
|
||||||
body: Container(
|
body: Container(
|
||||||
padding: EdgeInsets.all(18),
|
padding: EdgeInsets.all(18),
|
||||||
@@ -71,9 +84,8 @@ class _CargoEditorState extends State<CargoEditor> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
widget.cargo == null
|
fcsButton(context, getLocalString(context, "btn.save"),
|
||||||
? fcsButton(context, "Create", callack: () {})
|
callack: _save),
|
||||||
: fcsButton(context, "Save", callack: () {}),
|
|
||||||
SizedBox(height: 10)
|
SizedBox(height: 10)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -81,4 +93,52 @@ class _CargoEditorState extends State<CargoEditor> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_save() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var shipmentRateModel =
|
||||||
|
Provider.of<ShipmentRateModel>(context, listen: false);
|
||||||
|
CargoType _cargo = CargoType(
|
||||||
|
name: _descController.text, rate: double.parse(_rateController.text));
|
||||||
|
if (_isNew) {
|
||||||
|
await shipmentRateModel.addCargoType(_cargo);
|
||||||
|
} else {
|
||||||
|
_cargo.id = widget.cargo.id;
|
||||||
|
await shipmentRateModel.updateCargoType(_cargo);
|
||||||
|
}
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_delete() {
|
||||||
|
showConfirmDialog(
|
||||||
|
context, "cargo_type.edit.delete.confirm", _deleteCargoType);
|
||||||
|
}
|
||||||
|
|
||||||
|
_deleteCargoType() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var shipmentRateModel =
|
||||||
|
Provider.of<ShipmentRateModel>(context, listen: false);
|
||||||
|
await shipmentRateModel.deleteCargoType(widget.cargo.id);
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
124
lib/pages/rates/cargo_type_list.dart
Normal file
124
lib/pages/rates/cargo_type_list.dart
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
import 'package:fcs/domain/entities/cargo_type.dart';
|
||||||
|
import 'package:fcs/domain/entities/custom_duty.dart';
|
||||||
|
import 'package:fcs/domain/vo/delivery_address.dart';
|
||||||
|
import 'package:fcs/helpers/theme.dart';
|
||||||
|
import 'package:fcs/pages/box/cargo_type_editor.dart';
|
||||||
|
import 'package:fcs/pages/delivery_address/delivery_address_editor.dart';
|
||||||
|
import 'package:fcs/pages/main/util.dart';
|
||||||
|
import 'package:fcs/pages/rates/custom_editor.dart';
|
||||||
|
import 'package:fcs/pages/widgets/bottom_up_page_route.dart';
|
||||||
|
import 'package:fcs/pages/widgets/local_text.dart';
|
||||||
|
import 'package:fcs/pages/widgets/progress.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
import 'cargo_editor.dart';
|
||||||
|
import 'custom_row.dart';
|
||||||
|
import 'model/shipment_rate_model.dart';
|
||||||
|
|
||||||
|
class CargoTypeList extends StatefulWidget {
|
||||||
|
const CargoTypeList({Key key}) : super(key: key);
|
||||||
|
@override
|
||||||
|
_CargoTypeListState createState() => _CargoTypeListState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _CargoTypeListState extends State<CargoTypeList> {
|
||||||
|
bool _isLoading = false;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
var shipmentRateModel = Provider.of<ShipmentRateModel>(context);
|
||||||
|
|
||||||
|
return LocalProgress(
|
||||||
|
inAsyncCall: _isLoading,
|
||||||
|
child: Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
centerTitle: true,
|
||||||
|
leading: new IconButton(
|
||||||
|
icon: new Icon(CupertinoIcons.back),
|
||||||
|
onPressed: () => Navigator.pop(context),
|
||||||
|
),
|
||||||
|
backgroundColor: primaryColor,
|
||||||
|
title: LocalText(
|
||||||
|
context,
|
||||||
|
"cargo.form.title",
|
||||||
|
fontSize: 20,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
floatingActionButton: FloatingActionButton.extended(
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(
|
||||||
|
CupertinoPageRoute(builder: (context) => CargoEditor()));
|
||||||
|
},
|
||||||
|
icon: Icon(Icons.add, color: Colors.white),
|
||||||
|
backgroundColor: primaryColor,
|
||||||
|
label:
|
||||||
|
LocalText(context, 'cargo.form.title', color: Colors.white)),
|
||||||
|
body: Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: ListView.separated(
|
||||||
|
separatorBuilder: (c, i) => Divider(
|
||||||
|
color: primaryColor,
|
||||||
|
),
|
||||||
|
itemCount: shipmentRateModel.rate.cargoTypes.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
CargoType cargo = shipmentRateModel.rate.cargoTypes[index];
|
||||||
|
return InkWell(
|
||||||
|
onTap: () {
|
||||||
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
|
builder: (context) => CargoEditor(
|
||||||
|
cargo: cargo,
|
||||||
|
)));
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
|
child: _row(cargo.name, "\$ " + cargo.rate.toString(),
|
||||||
|
'per pound'),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_row(String desc, String price, String unit) {
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(left: 25, top: 5, bottom: 5),
|
||||||
|
child: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Text('$desc ', style: TextStyle(fontSize: 15)),
|
||||||
|
Spacer(),
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: <Widget>[
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(bottom: 3.0),
|
||||||
|
child: Text(
|
||||||
|
'$price',
|
||||||
|
style: TextStyle(color: primaryColor, fontSize: 14),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'$unit',
|
||||||
|
style: TextStyle(color: Colors.grey, fontSize: 14),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 50,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,6 +7,9 @@ import 'package:fcs/pages/widgets/progress.dart';
|
|||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
import 'model/shipment_rate_model.dart';
|
||||||
|
|
||||||
class CustomEditor extends StatefulWidget {
|
class CustomEditor extends StatefulWidget {
|
||||||
final CustomDuty custom;
|
final CustomDuty custom;
|
||||||
@@ -22,6 +25,7 @@ class _CustomEditorState extends State<CustomEditor> {
|
|||||||
|
|
||||||
bool _isLoading = false;
|
bool _isLoading = false;
|
||||||
CustomDuty _custom = new CustomDuty();
|
CustomDuty _custom = new CustomDuty();
|
||||||
|
bool _isNew = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
@@ -30,6 +34,8 @@ class _CustomEditorState extends State<CustomEditor> {
|
|||||||
_custom = widget.custom;
|
_custom = widget.custom;
|
||||||
_productController.text = _custom.productType;
|
_productController.text = _custom.productType;
|
||||||
_feeController.text = _custom.fee.toString();
|
_feeController.text = _custom.fee.toString();
|
||||||
|
} else {
|
||||||
|
_isNew = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,6 +68,12 @@ class _CustomEditorState extends State<CustomEditor> {
|
|||||||
backgroundColor: primaryColor,
|
backgroundColor: primaryColor,
|
||||||
title:
|
title:
|
||||||
Text(AppTranslations.of(context).text("rate.custom.form.title")),
|
Text(AppTranslations.of(context).text("rate.custom.form.title")),
|
||||||
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.delete),
|
||||||
|
onPressed: _delete,
|
||||||
|
)
|
||||||
|
],
|
||||||
),
|
),
|
||||||
body: Container(
|
body: Container(
|
||||||
padding: EdgeInsets.all(18),
|
padding: EdgeInsets.all(18),
|
||||||
@@ -76,9 +88,8 @@ class _CustomEditorState extends State<CustomEditor> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
widget.custom == null
|
fcsButton(context, getLocalString(context, "btn.save"),
|
||||||
? fcsButton(context, "Create", callack: () {})
|
callack: _save),
|
||||||
: fcsButton(context, "Save", callack: () {}),
|
|
||||||
SizedBox(height: 10)
|
SizedBox(height: 10)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -86,4 +97,53 @@ class _CustomEditorState extends State<CustomEditor> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_save() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var shipmentRateModel =
|
||||||
|
Provider.of<ShipmentRateModel>(context, listen: false);
|
||||||
|
CustomDuty _customduty = CustomDuty(
|
||||||
|
productType: _productController.text,
|
||||||
|
fee: double.parse(_feeController.text));
|
||||||
|
if (_isNew) {
|
||||||
|
await shipmentRateModel.addCustomDuty(_customduty);
|
||||||
|
} else {
|
||||||
|
_customduty.id = widget.custom.id;
|
||||||
|
await shipmentRateModel.updateCustomDuty(_customduty);
|
||||||
|
}
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_delete() {
|
||||||
|
showConfirmDialog(
|
||||||
|
context, "cargo.edit.delete.confirm", _deleteCustomDuty);
|
||||||
|
}
|
||||||
|
|
||||||
|
_deleteCustomDuty() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var shipmentRateModel =
|
||||||
|
Provider.of<ShipmentRateModel>(context, listen: false);
|
||||||
|
await shipmentRateModel.deleteCustomDuty(widget.custom.id);
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,11 +49,20 @@ class _CustomListState extends State<CustomList> {
|
|||||||
backgroundColor: primaryColor,
|
backgroundColor: primaryColor,
|
||||||
title: LocalText(
|
title: LocalText(
|
||||||
context,
|
context,
|
||||||
"Customs",
|
"rate.custom_duty.title",
|
||||||
fontSize: 20,
|
fontSize: 20,
|
||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
floatingActionButton: FloatingActionButton.extended(
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(
|
||||||
|
CupertinoPageRoute(builder: (context) => CustomEditor()));
|
||||||
|
},
|
||||||
|
icon: Icon(Icons.add, color: Colors.white),
|
||||||
|
backgroundColor: primaryColor,
|
||||||
|
label:
|
||||||
|
LocalText(context, 'rate.custom_duty', color: Colors.white)),
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: ListView.separated(
|
child: ListView.separated(
|
||||||
@@ -62,26 +71,46 @@ class _CustomListState extends State<CustomList> {
|
|||||||
),
|
),
|
||||||
itemCount: shipmentRateModel.rate.customDuties.length,
|
itemCount: shipmentRateModel.rate.customDuties.length,
|
||||||
itemBuilder: (context, index) {
|
itemBuilder: (context, index) {
|
||||||
return _row(
|
CustomDuty custom =
|
||||||
context, shipmentRateModel.rate.customDuties[index]);
|
shipmentRateModel.rate.customDuties[index];
|
||||||
|
return InkWell(
|
||||||
|
onTap: () {
|
||||||
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
|
builder: (context) => CustomEditor(custom: custom)));
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
|
child: _row(
|
||||||
|
custom.productType, "\$ " + custom.fee.toString()),
|
||||||
|
),
|
||||||
|
);
|
||||||
}),
|
}),
|
||||||
)),
|
)),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
_row(BuildContext context, CustomDuty custom) {
|
_row(String desc, String price) {
|
||||||
return InkWell(
|
return Container(
|
||||||
onTap: () => Navigator.pop<CustomDuty>(context, custom),
|
padding: EdgeInsets.only(left: 25, top: 5, bottom: 5),
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: <Widget>[
|
||||||
Expanded(
|
Text('$desc ', style: TextStyle(fontSize: 15)),
|
||||||
child: CustomRow(
|
Spacer(),
|
||||||
key: ValueKey(custom.id),
|
Column(
|
||||||
custom: custom,
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: <Widget>[
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(bottom: 3.0),
|
||||||
|
child: Text(
|
||||||
|
'$price',
|
||||||
|
style: TextStyle(color: primaryColor, fontSize: 14),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
SizedBox(
|
||||||
],
|
width: 50,
|
||||||
),
|
),
|
||||||
);
|
],
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
120
lib/pages/rates/discount_by weight_list.dart
Normal file
120
lib/pages/rates/discount_by weight_list.dart
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
import 'package:fcs/domain/entities/custom_duty.dart';
|
||||||
|
import 'package:fcs/domain/entities/discount.dart';
|
||||||
|
import 'package:fcs/domain/entities/discount_by_weight.dart';
|
||||||
|
import 'package:fcs/domain/vo/delivery_address.dart';
|
||||||
|
import 'package:fcs/helpers/theme.dart';
|
||||||
|
import 'package:fcs/pages/delivery_address/delivery_address_editor.dart';
|
||||||
|
import 'package:fcs/pages/main/util.dart';
|
||||||
|
import 'package:fcs/pages/rates/custom_editor.dart';
|
||||||
|
import 'package:fcs/pages/rates/discount_by_weight_editor.dart';
|
||||||
|
import 'package:fcs/pages/widgets/bottom_up_page_route.dart';
|
||||||
|
import 'package:fcs/pages/widgets/local_text.dart';
|
||||||
|
import 'package:fcs/pages/widgets/progress.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
import 'custom_row.dart';
|
||||||
|
import 'model/shipment_rate_model.dart';
|
||||||
|
|
||||||
|
class DiscountByWeightList extends StatefulWidget {
|
||||||
|
const DiscountByWeightList({Key key}) : super(key: key);
|
||||||
|
@override
|
||||||
|
_DiscountByWeightListState createState() => _DiscountByWeightListState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _DiscountByWeightListState extends State<DiscountByWeightList> {
|
||||||
|
bool _isLoading = false;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
var shipmentRateModel = Provider.of<ShipmentRateModel>(context);
|
||||||
|
|
||||||
|
return LocalProgress(
|
||||||
|
inAsyncCall: _isLoading,
|
||||||
|
child: Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
centerTitle: true,
|
||||||
|
leading: new IconButton(
|
||||||
|
icon: new Icon(CupertinoIcons.back),
|
||||||
|
onPressed: () => Navigator.pop(context),
|
||||||
|
),
|
||||||
|
backgroundColor: primaryColor,
|
||||||
|
title: LocalText(
|
||||||
|
context,
|
||||||
|
"rate.discount_by_weight",
|
||||||
|
fontSize: 20,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
floatingActionButton: FloatingActionButton.extended(
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(
|
||||||
|
CupertinoPageRoute(builder: (context) => DiscountByWeightEditor()));
|
||||||
|
},
|
||||||
|
icon: Icon(Icons.add, color: Colors.white),
|
||||||
|
backgroundColor: primaryColor,
|
||||||
|
label: LocalText(context, 'discount.new',
|
||||||
|
color: Colors.white)),
|
||||||
|
body: Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: ListView.separated(
|
||||||
|
separatorBuilder: (c, i) => Divider(
|
||||||
|
color: primaryColor,
|
||||||
|
),
|
||||||
|
itemCount: shipmentRateModel.rate.discountByWeights.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
DiscountByWeight discountByWeight =
|
||||||
|
shipmentRateModel.rate.discountByWeights[index];
|
||||||
|
return InkWell(
|
||||||
|
onTap: () {
|
||||||
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
|
builder: (context) => DiscountByWeightEditor(
|
||||||
|
discount: discountByWeight)));
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
|
child: _row("${discountByWeight.weight.toString()} lb",
|
||||||
|
"\$ " + discountByWeight.discount.toString()),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_row(String desc, String price) {
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(left: 25, top: 5, bottom: 5),
|
||||||
|
child: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Text('$desc ', style: TextStyle(fontSize: 15)),
|
||||||
|
Spacer(),
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: <Widget>[
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(bottom: 3.0),
|
||||||
|
child: Text(
|
||||||
|
'$price',
|
||||||
|
style: TextStyle(color: primaryColor, fontSize: 14),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 50,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,15 +1,18 @@
|
|||||||
import 'package:fcs/domain/entities/discount.dart';
|
import 'package:fcs/domain/entities/discount.dart';
|
||||||
|
import 'package:fcs/domain/entities/discount_by_weight.dart';
|
||||||
import 'package:fcs/helpers/theme.dart';
|
import 'package:fcs/helpers/theme.dart';
|
||||||
import 'package:fcs/localization/app_translations.dart';
|
import 'package:fcs/localization/app_translations.dart';
|
||||||
import 'package:fcs/pages/main/util.dart';
|
import 'package:fcs/pages/main/util.dart';
|
||||||
|
import 'package:fcs/pages/rates/model/shipment_rate_model.dart';
|
||||||
import 'package:fcs/pages/widgets/input_text.dart';
|
import 'package:fcs/pages/widgets/input_text.dart';
|
||||||
import 'package:fcs/pages/widgets/progress.dart';
|
import 'package:fcs/pages/widgets/progress.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class DiscountByWeightEditor extends StatefulWidget {
|
class DiscountByWeightEditor extends StatefulWidget {
|
||||||
final Discount discount;
|
final DiscountByWeight discount;
|
||||||
DiscountByWeightEditor({this.discount});
|
DiscountByWeightEditor({this.discount});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -18,10 +21,11 @@ class DiscountByWeightEditor extends StatefulWidget {
|
|||||||
|
|
||||||
class _DiscountByWeightEditorState extends State<DiscountByWeightEditor> {
|
class _DiscountByWeightEditorState extends State<DiscountByWeightEditor> {
|
||||||
TextEditingController _weightController = new TextEditingController();
|
TextEditingController _weightController = new TextEditingController();
|
||||||
TextEditingController _rateController = new TextEditingController();
|
TextEditingController _discountController = new TextEditingController();
|
||||||
|
|
||||||
bool _isLoading = false;
|
bool _isLoading = false;
|
||||||
Discount _discount = new Discount();
|
DiscountByWeight _discount = new DiscountByWeight();
|
||||||
|
bool _isNew = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
@@ -29,7 +33,9 @@ class _DiscountByWeightEditorState extends State<DiscountByWeightEditor> {
|
|||||||
if (widget.discount != null) {
|
if (widget.discount != null) {
|
||||||
_discount = widget.discount;
|
_discount = widget.discount;
|
||||||
_weightController.text = _discount.weight.toString();
|
_weightController.text = _discount.weight.toString();
|
||||||
_rateController.text = _discount.discountRate.toString();
|
_discountController.text = _discount.discount.toString();
|
||||||
|
} else {
|
||||||
|
_isNew = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,7 +53,7 @@ class _DiscountByWeightEditorState extends State<DiscountByWeightEditor> {
|
|||||||
final discountRateBox = InputText(
|
final discountRateBox = InputText(
|
||||||
labelTextKey: 'rate.discount.rate',
|
labelTextKey: 'rate.discount.rate',
|
||||||
iconData: Icons.attach_money,
|
iconData: Icons.attach_money,
|
||||||
controller: _rateController);
|
controller: _discountController);
|
||||||
|
|
||||||
return LocalProgress(
|
return LocalProgress(
|
||||||
inAsyncCall: _isLoading,
|
inAsyncCall: _isLoading,
|
||||||
@@ -60,6 +66,12 @@ class _DiscountByWeightEditorState extends State<DiscountByWeightEditor> {
|
|||||||
),
|
),
|
||||||
backgroundColor: primaryColor,
|
backgroundColor: primaryColor,
|
||||||
title: Text(AppTranslations.of(context).text("discount.new")),
|
title: Text(AppTranslations.of(context).text("discount.new")),
|
||||||
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.delete),
|
||||||
|
onPressed: _delete,
|
||||||
|
)
|
||||||
|
],
|
||||||
),
|
),
|
||||||
body: Container(
|
body: Container(
|
||||||
padding: EdgeInsets.all(18),
|
padding: EdgeInsets.all(18),
|
||||||
@@ -74,9 +86,8 @@ class _DiscountByWeightEditorState extends State<DiscountByWeightEditor> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
widget.discount == null
|
fcsButton(context, getLocalString(context, "btn.save"),
|
||||||
? fcsButton(context, "Create", callack: () {})
|
callack: _save),
|
||||||
: fcsButton(context, "Save", callack: () {}),
|
|
||||||
SizedBox(height: 10)
|
SizedBox(height: 10)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -84,4 +95,53 @@ class _DiscountByWeightEditorState extends State<DiscountByWeightEditor> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_save() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var shipmentRateModel =
|
||||||
|
Provider.of<ShipmentRateModel>(context, listen: false);
|
||||||
|
DiscountByWeight _discount = DiscountByWeight(
|
||||||
|
weight: double.parse(_weightController.text),
|
||||||
|
discount: double.parse(_discountController.text));
|
||||||
|
if (_isNew) {
|
||||||
|
await shipmentRateModel.addDiscountByWeight(_discount);
|
||||||
|
} else {
|
||||||
|
_discount.id = widget.discount.id;
|
||||||
|
await shipmentRateModel.updateDiscountByWeight(_discount);
|
||||||
|
}
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_delete() {
|
||||||
|
showConfirmDialog(context, "rate.discount_by_weight.edit.delete.confirm",
|
||||||
|
_deleteDiscountByWeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
_deleteDiscountByWeight() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var shipmentRateModel =
|
||||||
|
Provider.of<ShipmentRateModel>(context, listen: false);
|
||||||
|
await shipmentRateModel.deleteDiscountByWeight(widget.discount.id);
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:fcs/data/services/services.dart';
|
import 'package:fcs/data/services/services.dart';
|
||||||
|
import 'package:fcs/domain/entities/cargo_type.dart';
|
||||||
|
import 'package:fcs/domain/entities/custom_duty.dart';
|
||||||
|
import 'package:fcs/domain/entities/discount_by_weight.dart';
|
||||||
import 'package:fcs/domain/entities/rate.dart';
|
import 'package:fcs/domain/entities/rate.dart';
|
||||||
import 'package:fcs/pages/main/model/base_model.dart';
|
import 'package:fcs/pages/main/model/base_model.dart';
|
||||||
import 'package:logging/logging.dart';
|
import 'package:logging/logging.dart';
|
||||||
@@ -24,4 +27,53 @@ class ShipmentRateModel extends BaseModel {
|
|||||||
logout() async {
|
logout() async {
|
||||||
if (listener != null) await listener.cancel();
|
if (listener != null) await listener.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Rate
|
||||||
|
|
||||||
|
Future<void> updateRate(Rate rate) {
|
||||||
|
return Services.instance.rateService.updateRate(rate);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Cargo Type
|
||||||
|
|
||||||
|
Future<void> addCargoType(CargoType cargoType) {
|
||||||
|
return Services.instance.rateService.createCargoType(cargoType);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> updateCargoType(CargoType cargoType) {
|
||||||
|
return Services.instance.rateService.updateCargoType(cargoType);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> deleteCargoType(String id) {
|
||||||
|
return Services.instance.rateService.deleteCargoType(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
//CustomDuty
|
||||||
|
|
||||||
|
Future<void> addCustomDuty(CustomDuty customDuty) {
|
||||||
|
return Services.instance.rateService.createCustomDuty(customDuty);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> updateCustomDuty(CustomDuty customDuty) {
|
||||||
|
return Services.instance.rateService.updateCustomDuty(customDuty);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> deleteCustomDuty(String id) {
|
||||||
|
return Services.instance.rateService.deleteCargoType(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Discount by weight
|
||||||
|
Future<void> addDiscountByWeight(DiscountByWeight discountByWeight) {
|
||||||
|
return Services.instance.rateService
|
||||||
|
.createDiscountByWeight(discountByWeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> updateDiscountByWeight(DiscountByWeight discountByWeight) {
|
||||||
|
return Services.instance.rateService
|
||||||
|
.updateDiscountByWeight(discountByWeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> deleteDiscountByWeight(String id) {
|
||||||
|
return Services.instance.rateService.deleteDiscountByWeight(id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ import 'package:fcs/domain/entities/rate.dart';
|
|||||||
import 'package:fcs/helpers/theme.dart';
|
import 'package:fcs/helpers/theme.dart';
|
||||||
import 'package:fcs/localization/app_translations.dart';
|
import 'package:fcs/localization/app_translations.dart';
|
||||||
import 'package:fcs/pages/main/model/main_model.dart';
|
import 'package:fcs/pages/main/model/main_model.dart';
|
||||||
|
import 'package:fcs/pages/rates/cargo_type_list.dart';
|
||||||
|
import 'package:fcs/pages/rates/custom_list.dart';
|
||||||
import 'package:fcs/pages/rates/model/shipment_rate_model.dart';
|
import 'package:fcs/pages/rates/model/shipment_rate_model.dart';
|
||||||
import 'package:fcs/pages/widgets/bottom_up_page_route.dart';
|
import 'package:fcs/pages/widgets/bottom_up_page_route.dart';
|
||||||
import 'package:fcs/pages/widgets/local_text.dart';
|
import 'package:fcs/pages/widgets/local_text.dart';
|
||||||
@@ -14,6 +16,7 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
import '../main/util.dart';
|
import '../main/util.dart';
|
||||||
|
import 'discount_by weight_list.dart';
|
||||||
import 'shipment_rates_calculate.dart';
|
import 'shipment_rates_calculate.dart';
|
||||||
import 'shipment_rates_edit.dart';
|
import 'shipment_rates_edit.dart';
|
||||||
|
|
||||||
@@ -82,13 +85,24 @@ class _ShipmentRatesState extends State<ShipmentRates> {
|
|||||||
color: Colors.grey,
|
color: Colors.grey,
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
padding: EdgeInsets.only(left: 25, top: 10),
|
padding: EdgeInsets.only(left: 25, top: 10, right: 25),
|
||||||
child: Text(
|
child: Row(
|
||||||
"Cargo Types",
|
children: [
|
||||||
style: TextStyle(
|
Text(
|
||||||
color: primaryColor,
|
"Cargo Types",
|
||||||
fontWeight: FontWeight.bold,
|
style: TextStyle(
|
||||||
fontSize: 15),
|
color: primaryColor,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 15),
|
||||||
|
),
|
||||||
|
Spacer(),
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.edit, color: primaryColor),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
|
builder: (context) => CargoTypeList()));
|
||||||
|
})
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Column(
|
Column(
|
||||||
@@ -98,13 +112,24 @@ class _ShipmentRatesState extends State<ShipmentRates> {
|
|||||||
color: Colors.grey,
|
color: Colors.grey,
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
padding: EdgeInsets.only(left: 25, top: 10),
|
padding: EdgeInsets.only(left: 25, top: 10, right: 25),
|
||||||
child: Text(
|
child: Row(
|
||||||
"Discounts by weight",
|
children: [
|
||||||
style: TextStyle(
|
Text(
|
||||||
color: primaryColor,
|
"Discounts by weight",
|
||||||
fontWeight: FontWeight.bold,
|
style: TextStyle(
|
||||||
fontSize: 15),
|
color: primaryColor,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 15),
|
||||||
|
),
|
||||||
|
Spacer(),
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.edit, color: primaryColor),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
|
builder: (context) => DiscountByWeightList()));
|
||||||
|
})
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Column(
|
Column(
|
||||||
@@ -124,13 +149,24 @@ class _ShipmentRatesState extends State<ShipmentRates> {
|
|||||||
color: Colors.grey,
|
color: Colors.grey,
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
padding: EdgeInsets.only(left: 25, top: 10),
|
padding: EdgeInsets.only(left: 25, top: 10, right: 25),
|
||||||
child: Text(
|
child: Row(
|
||||||
"Custom Duties",
|
children: [
|
||||||
style: TextStyle(
|
Text(
|
||||||
color: primaryColor,
|
"Custom Duties",
|
||||||
fontWeight: FontWeight.bold,
|
style: TextStyle(
|
||||||
fontSize: 15),
|
color: primaryColor,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 15),
|
||||||
|
),
|
||||||
|
Spacer(),
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.edit, color: primaryColor),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
|
builder: (context) => CustomList()));
|
||||||
|
})
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Column(
|
Column(
|
||||||
|
|||||||
@@ -34,6 +34,8 @@ class _ShipmentRatesEditState extends State<ShipmentRatesEdit> {
|
|||||||
TextEditingController _deliveryFee = new TextEditingController();
|
TextEditingController _deliveryFee = new TextEditingController();
|
||||||
TextEditingController _volumetricRatio = new TextEditingController();
|
TextEditingController _volumetricRatio = new TextEditingController();
|
||||||
|
|
||||||
|
bool _isNew = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
@@ -89,208 +91,207 @@ class _ShipmentRatesEditState extends State<ShipmentRatesEdit> {
|
|||||||
feeBox,
|
feeBox,
|
||||||
ratioBox,
|
ratioBox,
|
||||||
SizedBox(height: 10),
|
SizedBox(height: 10),
|
||||||
ExpansionTile(
|
// ExpansionTile(
|
||||||
title: Text(
|
// title: Text(
|
||||||
'Cargo Types',
|
// 'Cargo Types',
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
color: primaryColor, fontWeight: FontWeight.bold),
|
// color: primaryColor, fontWeight: FontWeight.bold),
|
||||||
),
|
// ),
|
||||||
children: <Widget>[
|
// children: <Widget>[
|
||||||
Container(
|
// Container(
|
||||||
child: SingleChildScrollView(
|
// child: SingleChildScrollView(
|
||||||
scrollDirection: Axis.horizontal,
|
// scrollDirection: Axis.horizontal,
|
||||||
child: MyDataTable(
|
// child: MyDataTable(
|
||||||
headingRowHeight: 40,
|
// headingRowHeight: 40,
|
||||||
columnSpacing: 50,
|
// columnSpacing: 50,
|
||||||
columns: [
|
// columns: [
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Cargo Type",
|
// label: Text("Cargo Type",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Rate",
|
// label: Text("Rate",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Delete",
|
// label: Text("Delete",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
],
|
// ],
|
||||||
rows: getCargoRows(
|
// rows: getCargoRows(
|
||||||
shipmentRateModel.rate.cargoTypes),
|
// shipmentRateModel.rate.cargoTypes),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
Container(
|
// Container(
|
||||||
padding:
|
// padding:
|
||||||
EdgeInsets.only(top: 20, bottom: 15, right: 15),
|
// EdgeInsets.only(top: 20, bottom: 15, right: 15),
|
||||||
child: Align(
|
// child: Align(
|
||||||
alignment: Alignment.bottomRight,
|
// alignment: Alignment.bottomRight,
|
||||||
child: Container(
|
// child: Container(
|
||||||
width: 120,
|
// width: 120,
|
||||||
height: 40,
|
// height: 40,
|
||||||
child: FloatingActionButton.extended(
|
// child: FloatingActionButton.extended(
|
||||||
materialTapTargetSize:
|
// materialTapTargetSize:
|
||||||
MaterialTapTargetSize.shrinkWrap,
|
// MaterialTapTargetSize.shrinkWrap,
|
||||||
icon: Icon(Icons.add),
|
// icon: Icon(Icons.add),
|
||||||
onPressed: () {
|
// onPressed: () {
|
||||||
Navigator.push(
|
// Navigator.push(
|
||||||
context,
|
// context,
|
||||||
CupertinoPageRoute(
|
// CupertinoPageRoute(
|
||||||
builder: (context) => CargoEditor()),
|
// builder: (context) => CargoEditor()),
|
||||||
);
|
// );
|
||||||
},
|
// },
|
||||||
label: Text(
|
// label: Text(
|
||||||
'Add Cargo',
|
// 'Add Cargo',
|
||||||
style: TextStyle(fontSize: 12),
|
// style: TextStyle(fontSize: 12),
|
||||||
),
|
// ),
|
||||||
backgroundColor: primaryColor,
|
// backgroundColor: primaryColor,
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
)
|
// )
|
||||||
],
|
// ],
|
||||||
),
|
// ),
|
||||||
ExpansionTile(
|
// ExpansionTile(
|
||||||
title: Text(
|
// title: Text(
|
||||||
'Custom Duties',
|
// 'Custom Duties',
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
color: primaryColor, fontWeight: FontWeight.bold),
|
// color: primaryColor, fontWeight: FontWeight.bold),
|
||||||
),
|
// ),
|
||||||
children: <Widget>[
|
// children: <Widget>[
|
||||||
Container(
|
// Container(
|
||||||
child: SingleChildScrollView(
|
// child: SingleChildScrollView(
|
||||||
scrollDirection: Axis.horizontal,
|
// scrollDirection: Axis.horizontal,
|
||||||
child: MyDataTable(
|
// child: MyDataTable(
|
||||||
headingRowHeight: 40,
|
// headingRowHeight: 40,
|
||||||
columnSpacing: 50,
|
// columnSpacing: 50,
|
||||||
columns: [
|
// columns: [
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Produt Type",
|
// label: Text("Produt Type",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Fee",
|
// label: Text("Fee",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Delete",
|
// label: Text("Delete",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
],
|
// ],
|
||||||
rows: getCustomsRows(
|
// rows: getCustomsRows(
|
||||||
shipmentRateModel.rate.customDuties),
|
// shipmentRateModel.rate.customDuties),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
Container(
|
// Container(
|
||||||
padding:
|
// padding:
|
||||||
EdgeInsets.only(top: 20, bottom: 15, right: 15),
|
// EdgeInsets.only(top: 20, bottom: 15, right: 15),
|
||||||
child: Align(
|
// child: Align(
|
||||||
alignment: Alignment.bottomRight,
|
// alignment: Alignment.bottomRight,
|
||||||
child: Container(
|
// child: Container(
|
||||||
width: 120,
|
// width: 120,
|
||||||
height: 40,
|
// height: 40,
|
||||||
child: FloatingActionButton.extended(
|
// child: FloatingActionButton.extended(
|
||||||
materialTapTargetSize:
|
// materialTapTargetSize:
|
||||||
MaterialTapTargetSize.shrinkWrap,
|
// MaterialTapTargetSize.shrinkWrap,
|
||||||
icon: Icon(Icons.add),
|
// icon: Icon(Icons.add),
|
||||||
onPressed: () {
|
// onPressed: () {
|
||||||
Navigator.push(
|
// Navigator.push(
|
||||||
context,
|
// context,
|
||||||
CupertinoPageRoute(
|
// CupertinoPageRoute(
|
||||||
builder: (context) => CustomEditor()),
|
// builder: (context) => CustomEditor()),
|
||||||
);
|
// );
|
||||||
},
|
// },
|
||||||
label: Text(
|
// label: Text(
|
||||||
'Add Custom\nDuty',
|
// 'Add Custom\nDuty',
|
||||||
style: TextStyle(fontSize: 12),
|
// style: TextStyle(fontSize: 12),
|
||||||
),
|
// ),
|
||||||
backgroundColor: primaryColor,
|
// backgroundColor: primaryColor,
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
)
|
// )
|
||||||
],
|
// ],
|
||||||
),
|
// ),
|
||||||
ExpansionTile(
|
// ExpansionTile(
|
||||||
title: Text(
|
// title: Text(
|
||||||
'Discounts by weight',
|
// 'Discounts by weight',
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
color: primaryColor, fontWeight: FontWeight.bold),
|
// color: primaryColor, fontWeight: FontWeight.bold),
|
||||||
),
|
// ),
|
||||||
children: <Widget>[
|
// children: <Widget>[
|
||||||
Container(
|
// Container(
|
||||||
child: SingleChildScrollView(
|
// child: SingleChildScrollView(
|
||||||
scrollDirection: Axis.horizontal,
|
// scrollDirection: Axis.horizontal,
|
||||||
child: MyDataTable(
|
// child: MyDataTable(
|
||||||
headingRowHeight: 40,
|
// headingRowHeight: 40,
|
||||||
columnSpacing: 30,
|
// columnSpacing: 30,
|
||||||
columns: [
|
// columns: [
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Weight",
|
// label: Text("Weight",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Discount Rate",
|
// label: Text("Discount Rate",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
MyDataColumn(
|
// MyDataColumn(
|
||||||
label: Text("Delete",
|
// label: Text("Delete",
|
||||||
style: TextStyle(
|
// style: TextStyle(
|
||||||
fontSize: 15,
|
// fontSize: 15,
|
||||||
color: Colors.grey[600]))),
|
// color: Colors.grey[600]))),
|
||||||
],
|
// ],
|
||||||
rows: getDiscounts(
|
// rows: getDiscounts(
|
||||||
shipmentRateModel.rate.discountByWeights),
|
// shipmentRateModel.rate.discountByWeights),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
Container(
|
// Container(
|
||||||
padding:
|
// padding:
|
||||||
EdgeInsets.only(top: 20, bottom: 15, right: 15),
|
// EdgeInsets.only(top: 20, bottom: 15, right: 15),
|
||||||
child: Align(
|
// child: Align(
|
||||||
alignment: Alignment.bottomRight,
|
// alignment: Alignment.bottomRight,
|
||||||
child: Container(
|
// child: Container(
|
||||||
width: 130,
|
// width: 130,
|
||||||
height: 40,
|
// height: 40,
|
||||||
child: FloatingActionButton.extended(
|
// child: FloatingActionButton.extended(
|
||||||
materialTapTargetSize:
|
// materialTapTargetSize:
|
||||||
MaterialTapTargetSize.shrinkWrap,
|
// MaterialTapTargetSize.shrinkWrap,
|
||||||
icon: Icon(Icons.add),
|
// icon: Icon(Icons.add),
|
||||||
onPressed: () {
|
// onPressed: () {
|
||||||
Navigator.push(
|
// Navigator.push(
|
||||||
context,
|
// context,
|
||||||
CupertinoPageRoute(
|
// CupertinoPageRoute(
|
||||||
builder: (context) =>
|
// builder: (context) =>
|
||||||
DiscountByWeightEditor()),
|
// DiscountByWeightEditor()),
|
||||||
);
|
// );
|
||||||
},
|
// },
|
||||||
label: Text(
|
// label: Text(
|
||||||
'Add Discount',
|
// 'Add Discount',
|
||||||
style: TextStyle(fontSize: 12),
|
// style: TextStyle(fontSize: 12),
|
||||||
),
|
// ),
|
||||||
backgroundColor: primaryColor,
|
// backgroundColor: primaryColor,
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
)
|
// )
|
||||||
],
|
// ],
|
||||||
),
|
// ),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
fcsButton(context, "Save", callack: () {
|
fcsButton(context, getLocalString(context, "btn.save"),
|
||||||
Navigator.pop(context);
|
callack: _save),
|
||||||
}),
|
|
||||||
SizedBox(height: 10)
|
SizedBox(height: 10)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -299,6 +300,29 @@ class _ShipmentRatesEditState extends State<ShipmentRatesEdit> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_save() async {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = true;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
var shipmentRateModel =
|
||||||
|
Provider.of<ShipmentRateModel>(context, listen: false);
|
||||||
|
Rate _rate = Rate(
|
||||||
|
deliveryFee: double.parse(_deliveryFee.text),
|
||||||
|
freeDeliveryWeight: double.parse(_minWeight.text),
|
||||||
|
volumetricRatio: double.parse(_volumetricRatio.text));
|
||||||
|
|
||||||
|
await shipmentRateModel.updateRate(_rate);
|
||||||
|
Navigator.pop(context);
|
||||||
|
} catch (e) {
|
||||||
|
showMsgDialog(context, "Error", e.toString());
|
||||||
|
} finally {
|
||||||
|
setState(() {
|
||||||
|
_isLoading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
List<MyDataRow> getCargoRows(List<CargoType> cargos) {
|
List<MyDataRow> getCargoRows(List<CargoType> cargos) {
|
||||||
return cargos.map((r) {
|
return cargos.map((r) {
|
||||||
return MyDataRow(
|
return MyDataRow(
|
||||||
|
|||||||
Reference in New Issue
Block a user