| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015 |
- import 'package:flutter/material.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
- import 'dart:async';
- import 'order_management_page/order_detail_page.dart';
- import 'order_detail/order_detail.dart';
- import '../util/bluetooth_utils.dart';
- import '../util/session.dart';
- import '../showDialog.dart';
- import '../showAlert.dart';
- import '../util/models.dart';
- import '../util/api.dart';
- import '../util/util.dart';
- import 'package:barcode_scan/barcode_scan.dart';
- import 'package:flutter/services.dart';
- class OrderManagementPage extends StatefulWidget {
- final Widget child;
- OrderManagementPage({
- Key key,
- this.child
- }): super(key: key);
- _OrderManagementPageState createState() => _OrderManagementPageState();
- }
- class _OrderManagementPageState extends State < OrderManagementPage > with AutomaticKeepAliveClientMixin {
- @override
- Widget build(BuildContext context) {
- return Container(
- child: Scaffold(
- appBar: AppBar(
- title: Text('订单管理', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(36)), ),
- centerTitle: true,
- backgroundColor: Color.fromRGBO(64, 98, 254, 1),
- ),
- body: Container(
- decoration: BoxDecoration(
- color: Color.fromRGBO(246, 246, 254, 1)
- ),
- child: QueryWidget()
- ),
- resizeToAvoidBottomPadding: false //键盘弹出,页面不跟随向上滑动,防止出现溢出错误
- )
- );
- }
- @override
- bool get wantKeepAlive => true;
- }
- class QueryWidget extends StatefulWidget { //搜索栏
- final Widget child;
- QueryWidget({
- Key key,
- this.child
- }): super(key: key);
- _QueryWidgetState createState() => _QueryWidgetState();
- }
- class _QueryWidgetState extends State < QueryWidget > {
- //单号的输入框控制器
- TextEditingController _orderController = TextEditingController();
- ScrollController _scrollController = ScrollController();
- GlobalKey _globalKey = GlobalKey(); //搜索栏key
- List < bool > statusList = [true, false, false];
- double inputPostX = 0;
- double inputPostY = 0;
- double inputWidth = 0;
- double inputHeight = 0;
- bool showStatus = true; //提示层显示状态
- String _orderNo = "";
- int orderStatus = 1; //0:代收单,1:待取件,2:运途中:已完成
- int page = 1;
- bool hasNextPage = true;
- BluetoothUtils bluetooth = BluetoothUtils();
- List < FromStatusGetOrderList > orderList = [];
- List likeOrderNoList = [];
- var timer;
- bool loadMoreStatus = true;
- String barcode = "";//扫描的订单号
- @override
- void initState() {
- super.initState();
- switchOrderFromStatus(orderStatus, page);
- _scrollController.addListener(() {
- if (_scrollController.position.pixels == _scrollController.position.maxScrollExtent) {
- if (loadMoreStatus) {
- page = ++page;
- getMoreOrder(orderStatus, page);
- }
- }
- });
- }
- @override
- Widget build(BuildContext context) {
- return Stack(
- children: < Widget > [
- Container(
- child: Column(
- children: < Widget > [
- Container(
- color: Colors.white,
- height: ScreenUtil.getInstance().setHeight(222),
- padding: EdgeInsets.fromLTRB(ScreenUtil.getInstance().setWidth(20), ScreenUtil.getInstance().setWidth(20), ScreenUtil.getInstance().setWidth(20), 0),
- child: Column(
- children: < Widget > [
- Container(
- key: _globalKey,
- height: ScreenUtil.getInstance().setHeight(100),
- decoration: BoxDecoration(
- border: Border.all(color: Color.fromRGBO(204, 204, 204, 1), width: 1),
- borderRadius: BorderRadius.all(Radius.circular(5))
- ),
- child: Row(
- children: < Widget > [
- Expanded(
- child: TextField(
- controller: _orderController,
- keyboardType: TextInputType.number,
- autocorrect: true,
- decoration: InputDecoration(
- border: InputBorder.none,
- hintText: "输入运单号后6位查询物流",
- hintStyle: TextStyle(fontSize: ScreenUtil.getInstance().setSp(26), color: Color.fromRGBO(155, 155, 155, 1)),
- contentPadding: EdgeInsets.fromLTRB(ScreenUtil.getInstance().setWidth(30), 0, ScreenUtil.getInstance().setWidth(30), 0)
- ),
- onTap: () {
- RenderObject inputObj = _globalKey.currentContext.findRenderObject();
- setState(() {
- inputWidth = inputObj.paintBounds.size.width;
- inputHeight = inputObj.paintBounds.size.height;
- inputPostX = inputObj.getTransformTo(null).getTranslation().x;
- inputPostY = ScreenUtil.getInstance().setWidth(20) + inputHeight;
- });
- },
- onChanged: ((value) {
- setState(() {
- _orderNo = value;
- });
- if (timer != null) {
- timer.cancel();
- }
- timer = Timer(Duration(milliseconds: 500), () {
- if (_orderNo.length >= 6) {
- orderNoLike(_orderNo, orderStatus).then((resp) {
- if (isNotError(context, resp) && this.mounted) {
- LikeOrderNo tempObj = LikeOrderNo.fromJson(resp.data);
- if (tempObj.data.length > 0) {
- setState(() {
- likeOrderNoList = tempObj.data;
- showStatus = false;
- });
- }
- }
- });
- } else {
- setState(() {
- showStatus = true;
- });
- }
- });
- }),
- onEditingComplete: () {
- FocusScope.of(context).requestFocus(FocusNode());
- setState(() {
- showStatus = true;
- });
- },
- ),
- ),
- IconButton(
- icon: Image.asset('lib/images/icon_saoyisao.png',
- width: ScreenUtil.getInstance().setWidth(38),
- height: ScreenUtil.getInstance().setHeight(36),
- ),
- onPressed: () {
- scan();
- },
- ),
- // GestureDetector(
- // child: Container(
- // width: ScreenUtil.getInstance().setWidth(120),
- // decoration: BoxDecoration(
- // border: Border(left: BorderSide.merge(BorderSide(color: Color.fromRGBO(204, 204, 204, 1), width: 1), BorderSide(color: Color.fromRGBO(204, 204, 204, 1), width: 0)), )
- // ),
- // child: Center(
- // child: Text("查询", style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(26), color: Color.fromRGBO(64, 98, 254, 1)), ),
- // ),
- // ),
- // onTap: () {
- // print("查询");
- // }
- // ),
- ],
- ),
- ),
- Container(
- height: ScreenUtil.getInstance().setHeight(100),
- child: Container(
- padding: EdgeInsets.only(top: ScreenUtil.getInstance().setHeight(25)),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceAround,
- children: < Widget > [
- InkWell(
- child: Container(
- height: ScreenUtil.getInstance().setHeight(80),
- decoration: BoxDecoration(
- border: statusList[0] ? Border(bottom: BorderSide.merge(BorderSide(color: Colors.black, width: 1), BorderSide(color: Colors.black, width: 0)), ) : Border()
- ),
- child: Center(
- child: Text("待取件", style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(30), color: statusList[0] ? Colors.black : Color.fromRGBO(155, 155, 155, 1)), ),
- )
- ),
- onTap: () {
- if (statusList[0]) {
- return;
- } else {
- setState(() {
- statusList = [true, false, false];
- orderStatus = 1;
- });
- switchOrderFromStatus(orderStatus, page);
- }
- },
- ),
- InkWell(
- child: Container(
- height: ScreenUtil.getInstance().setHeight(80),
- decoration: BoxDecoration(
- border: statusList[1] ? Border(bottom: BorderSide.merge(BorderSide(color: Colors.black, width: 1), BorderSide(color: Colors.black, width: 0)), ) : Border()
- ),
- child: Center(
- child: Text("运途中", style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(30), color: statusList[1] ? Colors.black : Color.fromRGBO(155, 155, 155, 1)), ),
- )
- ),
- onTap: () {
- if (statusList[1]) {
- return;
- } else {
- setState(() {
- statusList = [false, true, false];
- orderStatus = 2;
- });
- switchOrderFromStatus(orderStatus, page);
- }
- },
- ),
- InkWell(
- child: Container(
- height: ScreenUtil.getInstance().setHeight(80),
- decoration: BoxDecoration(
- border: statusList[2] ? Border(bottom: BorderSide.merge(BorderSide(color: Colors.black, width: 1), BorderSide(color: Colors.black, width: 0)), ) : Border()
- ),
- child: Center(
- child: Text("已完成", style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(30), color: statusList[2] ? Colors.black : Color.fromRGBO(155, 155, 155, 1)), ),
- )
- ),
- onTap: () {
- if (statusList[2]) {
- return;
- } else {
- setState(() {
- statusList = [false, false, true];
- orderStatus = 3;
- });
- switchOrderFromStatus(orderStatus, page);
- }
- },
- ),
- ],
- )
- )
- ),
- ],
- )
- ),
- Expanded(
- child: Container(
- padding: EdgeInsets.fromLTRB(ScreenUtil.getInstance().setWidth(20), ScreenUtil.getInstance().setWidth(20), ScreenUtil.getInstance().setWidth(20), 0),
- child: orderList == null ? Center(
- child: _getMoreWidget()
- ) : orderList.length == 0 ?
- Center(
- child: Text('暂无订单'),
- ) :
- RefreshIndicator(
- onRefresh: refreshOrder,
- child: ListView.builder(
- physics: AlwaysScrollableScrollPhysics(),
- controller: _scrollController,
- itemCount: orderList.length + 1,
- itemBuilder: (BuildContext context, int index) {
- if (index < orderList.length) {
- return _cardWiget(orderList[index], index);
- }
- if (hasNextPage) {
- return _getMoreWidget();
- } else {
- return _noMoreWidegt();
- }
- },
- )
- )
- ),
- )
- ],
- )
- ),
- Positioned(
- left: inputPostX,
- top: inputPostY,
- child: Offstage(
- offstage: showStatus,
- child:
- Container(
- width: inputWidth,
- height: ScreenUtil.getInstance().setHeight(320),
- margin: EdgeInsets.only(top: ScreenUtil.getInstance().setHeight(1)),
- decoration: BoxDecoration(
- color: Colors.white,
- border: Border.all(color: Color.fromRGBO(204, 204, 204, 1), width: 1),
- borderRadius: BorderRadius.all(Radius.circular(5))
- ),
- child: ListView.builder(
- itemCount: likeOrderNoList.length,
- itemBuilder: (BuildContext context, int index) {
- return InkWell(
- child: Padding(
- padding: EdgeInsets.all(10),
- child: Text(likeOrderNoList[index],style: TextStyle(color:Color.fromRGBO(64, 98, 254, 1)),),
- ),
- onTap: () {
- setState(() {
- page = 1;
- _orderNo = likeOrderNoList[index];
- });
- fromStatusGetOrderList(orderStatus, page, likeOrderNoList[index]).then((resp) {
- if (isNotError(context, resp) && this.mounted) {
- FromStatusGetOrderObj tempObj = FromStatusGetOrderObj.fromJson(resp.data);
- setState(() {
- orderList = tempObj.data.items;
- hasNextPage = tempObj.data.hasNextPage;
- });
- }
- });
- setState(() {
- _orderController.text = likeOrderNoList[index];
- showStatus = true;
- FocusScope.of(context).requestFocus(FocusNode());
- });
- },
- );
- },
- ),
- ),
- )
- )
- ],
- );
- }
-
- Widget _cardWiget(FromStatusGetOrderList obj, int index) {
- Map < int, String > statusMap = {
- 1: '待取货',
- 2: '运途中',
- 3: '已签收',
- 4: '已拒收',
- 5: '已作废',
- 6: '已取消'
- };
- return Card(
- color: Colors.white,
- child: Container(
- padding: EdgeInsets.fromLTRB(ScreenUtil.getInstance().setWidth(30), ScreenUtil.getInstance().setWidth(30), ScreenUtil.getInstance().setWidth(30), ScreenUtil.getInstance().setWidth(20)),
- child: Column(
- children: < Widget > [
- InkWell(
- child: Column(
- children: <Widget>[
- Padding(
- padding: EdgeInsets.only(bottom: ScreenUtil.getInstance().setHeight(30)),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: < Widget > [
- Text('订单号:${obj.orderNo}', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(102, 102, 102, 1)), ),
- Text('${statusMap[obj.orderStatus]}', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color:obj.orderStatus==5?Colors.red:Color.fromRGBO(126, 211, 33, 1)), ),
- ],
- )
- ),
- Padding(
- padding: EdgeInsets.only(bottom: ScreenUtil.getInstance().setHeight(20)),
- child: Row(
- children: < Widget > [
- Text('${obj.sendCompanyName} --> ${obj.receiptCompanyName}',
- overflow: TextOverflow.ellipsis,style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(30)), ),
- ],
- )
- ),
- Padding(
- padding: EdgeInsets.only(bottom: ScreenUtil.getInstance().setHeight(15)),
- child: Row(
- children: < Widget > [
- SizedBox(
- width: ScreenUtil.getInstance().setWidth(355),
- child: Text('货物名称:${obj.goods}', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(155, 155, 155, 1)), ),
- ),
- Text('代收款:${obj.goodsAgencyFund/100}元', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(155, 155, 155, 1)), ),
- ],
- ),
- ),
- Padding(
- padding: EdgeInsets.only(bottom: ScreenUtil.getInstance().setHeight(30)),
- child: Row(
- children: < Widget > [
- SizedBox(
- width: ScreenUtil.getInstance().setWidth(355),
- child: Text('货物件数:${obj.goodsQuantity}件', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(155, 155, 155, 1)), ),
- ),
- Text('运费:${obj.goodsFreight/100}元', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(155, 155, 155, 1)), ),
- ],
- ),
- ),
- Padding(
- padding: EdgeInsets.only(bottom: ScreenUtil.getInstance().setHeight(20)),
- child: Container(
- height: ScreenUtil.getInstance().setHeight(1),
- color: Color.fromRGBO(223, 223, 223, 1),
- ),
- ),
- ],
- ),
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (BuildContext context) {
- return OrderDetailsPage(orderNo: obj.orderNo);
- })
- );
- },
- ),
- orderStatus == 1 ? _status1Fun(obj, index) : orderStatus == 2 ? _status2Fun(obj, index) : _status3Fun(obj, index)
- ],
- ),
- )
- );
- }
-
- Widget _status1Fun(FromStatusGetOrderList obj, int index) {
- return Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: < Widget > [
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('作废', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认作废', childCallback: (val) {
- if (val) {
- myUpdataOrder(obj.orderNo, 5, index);
- } else {
- return;
- }
- },
- );
- });
- print("作废");
- },
- ),
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('寄件', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认寄件', childCallback: (val) {
- if (val) {
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (BuildContext context) {
- return OrderDetailPage(orderNo: obj.orderNo,status: '寄件',);
- })
- ).then((resp) {
- if (resp == true) {
- deleteOrder(index);
- }
- });
- } else {
- return;
- }
- },
- );
- });
- print("寄件");
- },
- ),
- ],
- );
- }
-
- Widget _status2Fun(FromStatusGetOrderList obj, int index) {
- return Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: < Widget > [
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('作废', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认作废', childCallback: (val) {
- if (val) {
- myUpdataOrder(obj.orderNo, 5, index);
- } else {
- return;
- }
- },
- );
- });
- print("作废");
- },
- ),
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('拒收', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认拒收', childCallback: (val) {
- if (val) {
- myUpdataOrder(obj.orderNo, 4, index);
- } else {
- return;
- }
- },
- );
- });
- print("拒收");
- },
- ),
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('签收', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认签收', childCallback: (val) {
- if (val) {
- myUpdataOrder(obj.orderNo, 3, index);
- } else {
- return;
- }
- },
- );
- });
- print("签收");
- },
- ),
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('改单', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认改单', childCallback: (val) {
- if (val) {
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (BuildContext context) {
- return OrderDetailPage(orderNo: obj.orderNo,status: '改单',);
- })
- ).then((resp) {
- if (resp == true) {
- switchOrderFromStatus(orderStatus, page);
- }
- });
- } else {
- return;
- }
- },
- );
- });
- print("改单");
- },
- ),
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('打印', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认打印', childCallback: (val) {
- if (val) {
- checkBlueToothAndPrintOrder(obj);
- } else {
- return;
- }
- },
- );
- });
- print("打印");
- },
- ),
- ],
- );
- }
-
- Widget _status3Fun(FromStatusGetOrderList obj, int index) {
- return Row(
- mainAxisAlignment: MainAxisAlignment.end,
- children: < Widget > [
- InkWell(
- child: Container(
- width: ScreenUtil.getInstance().setWidth(94),
- height: ScreenUtil.getInstance().setHeight(48),
- decoration: BoxDecoration(
- color: Color.fromRGBO(239, 243, 249, 1),
- borderRadius: BorderRadius.all(Radius.circular(4.0))
- ),
- child: Center(
- child: Text('打印', style: TextStyle(fontSize: ScreenUtil.getInstance().setSp(24), color: Color.fromRGBO(64, 98, 254, 1))),
- ),
- ),
- onTap: () {
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: '是否确认打印', childCallback: (val) {
- if (val) {
- checkBlueToothAndPrintOrder(obj);
- } else {
- return;
- }
- },
- );
- });
- print("打印");
- },
- ),
- ],
- );
- }
- Widget _getMoreWidget() {
- return Center(
- child: Padding(
- padding: EdgeInsets.all(10.0),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: < Widget > [
- Text(
- '加载中...',
- style: TextStyle(fontSize: 16.0),
- ),
- Container(
- width: ScreenUtil.getInstance().setWidth(50),
- height: ScreenUtil.getInstance().setHeight(50),
- child: CircularProgressIndicator()
- )
- ],
- ),
- ),
- );
- }
- Widget _noMoreWidegt() {
- return Center(
- child: Padding(
- padding: EdgeInsets.all(10.0),
- child: Text(
- '没有更多数据了...',
- style: TextStyle(fontSize: 16.0),
- ),
- ),
- );
- }
- switchOrderFromStatus(int orderStatus, int page) {
- setState(() {
- orderList = null;
- });
- page = 1;
- fromStatusGetOrderList(orderStatus, page, _orderNo).then((resp) {
- if (isNotError(context, resp) && this.mounted) {
- FromStatusGetOrderObj tempObj = FromStatusGetOrderObj.fromJson(resp.data);
- setState(() {
- orderList = tempObj.data.items;
- hasNextPage = tempObj.data.hasNextPage;
- });
- }
- });
- }
- //扫描切换
- scanSearchOrder(){
- setState(() {
- orderList = [];
- });
- page = 1;
- getOrderDetail(_orderNo).then((resp) {
- if (isNotError(context, resp) && this.mounted) {
- OrderDetailData tempObj = OrderDetailObj.fromJson(resp.data).data;
- var tempJson = {
- "goods": tempObj.goods,
- "goodsAgencyFund": tempObj.goodsAgencyFund,
- "goodsFreight": tempObj.goodsFreight,
- "goodsQuantity": tempObj.goodsQuantity,
- "orderNo": tempObj.orderNo,
- "orderStatus": tempObj.orderStatus,
- "receiptCompanyName": tempObj.receiptCompanyName,
- "sendCompanyName": tempObj.sendCompanyName
- };
- FromStatusGetOrderList obj = FromStatusGetOrderList.fromJson(tempJson);
- if(obj.orderStatus==2){
- setState(() {
- statusList = [false, true, false];
- orderStatus = 2;
- });
-
- }else if(obj.orderStatus>=3){
- setState(() {
- statusList = [false, false, true];
- orderStatus = 3;
- });
- }
-
- setState(() {
- orderList.add(obj);
- hasNextPage = false;
- });
- }
- });
- }
-
- getMoreOrder(int orderStatus, int page) {
- if (!hasNextPage) {
- return;
- }
- loadMoreStatus = false;
- fromStatusGetOrderList(orderStatus, page, _orderNo).then((resp) {
- if (isNotError(context, resp) && this.mounted) {
- FromStatusGetOrderObj tempObj = FromStatusGetOrderObj.fromJson(resp.data);
- setState(() {
- orderList.addAll(tempObj.data.items);
- hasNextPage = tempObj.data.hasNextPage;
- });
- loadMoreStatus = true;
- } else {
- loadMoreStatus = true;
- }
- });
- }
- deleteOrder(int index) {
- setState(() {
- orderList.removeAt(index);
- });
- if (orderList.length < 4) {
- if (hasNextPage) {
- setState(() {
- page = ++page;
- });
- getMoreOrder(orderStatus, page);
- }
- }
- }
-
- myUpdataOrder(String myOrderNo, int myOrderStatus, int index) {
- updataOrderStatus(myOrderNo, myOrderStatus).then((resp) {
- if (isNotError(context, resp) && this.mounted) {
- deleteOrder(index);
- }else{
- OrderReception obj = OrderReception.fromJson(resp.data);
- showDialog < Null > (
- context: context, //BuildContext对象
- barrierDismissible: false,
- builder: (BuildContext context) {
- return new LoadingDialog( //调用对话框
- text: obj.msg, childCallback: (val) {
- },
- );
- });
- }
- });
- }
- Future refreshOrder() async {
- page = 1;
- await fromStatusGetOrderList(orderStatus, page, _orderNo).then((resp) {
- if (isNotError(context, resp) && this.mounted) {
- FromStatusGetOrderObj tempObj = FromStatusGetOrderObj.fromJson(resp.data);
- setState(() {
- orderList = tempObj.data.items;
- hasNextPage = tempObj.data.hasNextPage;
- });
- }
- });
- }
- void checkBlueToothAndPrintOrder(FromStatusGetOrderList obj){
- bluetooth.isBTDevice().then((resp){
- if(resp){
- bluetooth.isEnableBluetooth().then((resp){
- if(resp){
- getOrderDetail(obj.orderNo).then((resp){
- if(isNotError(context, resp) && this.mounted){
- OrderDetailData data = OrderDetailObj.fromJson(resp.data).data;
- getKey('printType').then((printType){
- getKey('stationName').then((stationName){
- getKey('nickName').then((nickName){
- getKey('companyName').then((companyName){
- getKey('companyCustomerPhone').then((companyCustomerPhone){
- double goodsYs = data.goodsPaymentMethod==2?(data.goodsFreight/100)+(data.goodsAgencyFund/100):data.goodsAgencyFund/100;
- String nowDate = fromatDate( DateTime.now().millisecondsSinceEpoch);//打印时间
- String createTime = fromatDate(data.createTime);
- double goodsAgencyFunds = data.goodsAgencyFund/100;
- double goodsDFreight = data.goodsPaymentMethod==2?data.goodsFreight/100:0;
- double goodsXFreight = data.goodsPaymentMethod==1?data.goodsFreight/100:0;
- String receiptAddress = data.receiptCompanyAddress.length>10?data.receiptCompanyAddress.substring(0,10):data.receiptCompanyAddress;
- Map<String, String> pum = {
- "[logisticsNo]": "${data.orderNo ?? ''}",
- "[createTime]": "$createTime",
- "[sendStationName]": "$stationName",
- "[dealerCode]": "${data.sendCompanyCode ?? ''}",
- "[dealerName]": "${data.sendCompanyName}",
- "[dealerTel]": "${data.sendCompanyPhone ?? ''}",
- "[repairName]": "${data.receiptCompanyName ?? ''}",
- "[repairTel]": "${data.receiptCompanyPhone ?? ''}",
- "[endStationName]": "${data.receiptStationName}",
- "[goodsLineCode]": "${data.lineCode ?? ''}",
- "[goodsLine]": "${data.lineName ?? ''}",
- "[repairAddress]": "${receiptAddress?? ''}",
- "[goodsQuantity]": "${data.goodsQuantity ?? ''}",
- "[goodsInsurance]": "${data.goodsInsurance ?? ''}",
- "[goodsFlatCost]": "${data.goodsFlatCost ?? ''}",
- // 到付 现付 金额
- "[goodsDFreight]": "$goodsDFreight",
- "[goodsXFreight]": "$goodsXFreight",
- "[goodsAgencyFund]": "$goodsAgencyFunds",
- "[goodsYs]": "$goodsYs",
- "[dealerBankAccount]": "${data.sendCompanyBankCard ?? ''}",
- "[goodsRemark]": "${data.memo ?? ''}",
- "[realName]": "${nickName?? ''}",
- "[currentTime]": "$nowDate",
- "[currentGoodNumber]": "1/1",
- "[companyCustomerPhone]":"$companyCustomerPhone",
- "[companyName]":"$companyName"
- };
- bluetooth.printOrder(pum, int.parse(printType)).then((value){
- if(value==null){
- showDialog <Null> (
- context: context,
- barrierDismissible: false,
- builder: (BuildContext context) {
- return MyAlertDialog(text: '未连接打印机',childCallback:(val){});
- }
- );
- }
- });
- });
- });
-
- });
- });
- });
- }
- });
- }else{
- showDialog <Null> (
- context: context,
- barrierDismissible: false,
- builder: (BuildContext context) {
- return MyAlertDialog(text: '请打开蓝牙并连接打印机',childCallback:(val){});
- }
- );
- }
- });
- }else{
- showDialog <Null> (
- context: context,
- barrierDismissible: false,
- builder: (BuildContext context) {
- return MyAlertDialog(text: '当前设备不支持蓝牙',childCallback:(val){});
- }
- );
- }
- });
-
- }
- Future scan() async {
- try {
- String barcode = await BarcodeScanner.scan();
- setState(() {
- page=1;
- _orderNo = barcode;
- _orderController.text = barcode;
- });
- scanSearchOrder();
- } on PlatformException catch (e) {
- if (e.code == BarcodeScanner.CameraAccessDenied) {
- setState(() {
- return this.barcode = 'The user did not grant the camera permission!';
- });
- } else {
- setState(() {
- return this.barcode = 'Unknown error: $e';
- });
- }
- } on FormatException{
- setState(() => this.barcode = 'null (User returned using the "back"-button before scanning anything. Result)');
- } catch (e) {
- setState(() => this.barcode = 'Unknown error: $e');
- }
- }
- }
|