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

@@ -2,8 +2,6 @@ import 'package:fcs/domain/entities/cargo_type.dart';
import 'package:fcs/domain/entities/discount.dart';
import 'package:fcs/domain/entities/invoice.dart';
import 'package:fcs/domain/entities/rate.dart';
import 'package:fcs/helpers/theme.dart';
import 'package:fcs/pages/discount/discount_list.dart';
import 'package:fcs/pages/main/util.dart';
import 'package:fcs/pages/widgets/local_text.dart';
import 'package:flutter/cupertino.dart';
@@ -227,151 +225,6 @@ class InvoiceTable extends StatelessWidget {
),
));
// dataRow.insert(
// dataRow.length,
// Container(
// padding: const EdgeInsets.only(left: 5.0, right: 5.0, top: 20.0),
// child: Row(
// children: [
// Expanded(
// flex: 1,
// child: Container(
// alignment: Alignment.centerRight,
// child: LocalText(
// context,
// 'invoice.handling_fee',
// color: Colors.black,
// ),
// ),
// ),
// SizedBox(width: 50),
// Expanded(
// child: Text(
// '\$ ${invoice.getHandlingFee().toStringAsFixed(2) ?? ""}',
// textAlign: TextAlign.end,
// style: TextStyle(
// fontSize: 15,
// fontWeight: FontWeight.bold,
// )))
// ],
// ),
// ));
// dataRow.insert(
// dataRow.length,
// Container(
// padding: const EdgeInsets.only(
// left: 5.0, right: 5.0, top: 10.0, bottom: 10.0),
// child: Row(
// children: [
// Expanded(
// flex: 1,
// child: Container(
// alignment: Alignment.centerRight,
// child: LocalText(
// context,
// 'invoice.delivery_fee',
// color: Colors.black,
// ),
// )),
// Switch(
// value: (invoice.deliveryFee ?? 0) > 0,
// onChanged: (value) {
// if (deliveryFeeSelected != null) {
// deliveryFeeSelected(value);
// }
// },
// activeTrackColor: primaryColor.withOpacity(0.8),
// activeColor: primaryColor,
// ),
// Expanded(
// child:
// Text('\$ ${invoice.getDeliveryFee().toStringAsFixed(2)}',
// textAlign: TextAlign.end,
// style: TextStyle(
// fontSize: 15,
// fontWeight: FontWeight.bold,
// )))
// ],
// ),
// ));
// dataRow.insert(
// dataRow.length,
// Container(
// child: Row(
// children: [
// Expanded(child: Text('')),
// Expanded(
// flex: 2,
// child: Divider(
// thickness: 3,
// )),
// ],
// )));
// dataRow.insert(
// dataRow.length,
// Container(
// padding: const EdgeInsets.only(
// left: 5.0, right: 5.0, top: 10.0, bottom: 10.0),
// child: Row(
// children: [
// Expanded(
// flex: 2,
// child: Center(
// child: LocalText(
// context,
// 'invoice.net_amount',
// color: Colors.black,
// fontSize: 15,
// fontWeight: FontWeight.bold,
// ),
// ),
// ),
// Expanded(
// child: Text(
// '\$ ${invoice.getNetAmount(rate).toStringAsFixed(2)}',
// textAlign: TextAlign.end,
// style: TextStyle(
// fontSize: 18,
// fontWeight: FontWeight.bold,
// color: primaryColor)))
// ],
// ),
// ));
// dataRow.insert(
// dataRow.length,
// Container(
// padding: const EdgeInsets.only(
// left: 5.0, right: 5.0, top: 10.0, bottom: 10.0),
// child: Row(
// children: [
// Expanded(
// flex: 2,
// child: Center(
// child: LocalText(
// context,
// 'invoice.balance',
// color: Colors.black,
// fontSize: 15,
// fontWeight: FontWeight.bold,
// ),
// ),
// ),
// Expanded(
// child: Text(
// '\$ ${invoice.getTotalBalance(rate).toStringAsFixed(2)}',
// textAlign: TextAlign.end,
// style: TextStyle(
// fontSize: 18,
// fontWeight: FontWeight.bold,
// color: primaryColor)))
// ],
// ),
// ));
return dataRow;
}
}