diff --git a/lib/business_system/goods/off_shelf/off_shelf_page.dart b/lib/business_system/goods/off_shelf/off_shelf_page.dart index c39553c3..b316600f 100644 --- a/lib/business_system/goods/off_shelf/off_shelf_page.dart +++ b/lib/business_system/goods/off_shelf/off_shelf_page.dart @@ -40,7 +40,6 @@ class _OffShelfPage extends State { int _pageIndex = 1; BusinessApiService businessService; List adminProductVoList = []; - List productIds = []; bool _shimmer = true; @override @@ -106,7 +105,7 @@ class _OffShelfPage extends State { } ///批量上架 - queryGoodsUpdate() async { + queryGoodsUpdate(productIds) async { EasyLoading.show( status: S.current.zhengzaijiazai, maskType: EasyLoadingMaskType.black); if (businessService == null) { @@ -134,7 +133,7 @@ class _OffShelfPage extends State { } ///批量删除 - queryDelProduct() async { + queryDelProduct(productIds) async { EasyLoading.show( status: S.current.zhengzaijiazai, maskType: EasyLoadingMaskType.black); if (businessService == null) { @@ -271,16 +270,17 @@ class _OffShelfPage extends State { child: GestureDetector( behavior: HitTestBehavior.opaque, onTap: () { - if (productIds.length != 0) productIds.clear(); + List productIds = []; adminProductVoList.forEach((element) { - if (element.isSelect) productIds.add(element.id); + if (element.isSelect) + productIds.add(element.id); }); if (productIds.length == 0) { SmartDialog.showToast("请选择要上架的商品", alignment: Alignment.center); return; } else { - queryGoodsUpdate(); + queryGoodsUpdate(productIds); } }, child: Container( @@ -305,16 +305,17 @@ class _OffShelfPage extends State { child: GestureDetector( behavior: HitTestBehavior.opaque, onTap: () { - if (productIds.length != 0) productIds.clear(); + List productIds = []; adminProductVoList.forEach((element) { - if (element.isSelect) productIds.add(element.id); + if (element.isSelect) + productIds.add(element.id); }); if (productIds.length == 0) { SmartDialog.showToast("请选择要删除的商品", alignment: Alignment.center); return; } else { - showDelGoodsDialog(); + showDelGoodsDialog(productIds); } }, child: Container( @@ -388,7 +389,7 @@ class _OffShelfPage extends State { } ///删除商品提示弹窗 - showDelGoodsDialog() { + showDelGoodsDialog(productIds) { showDialog( context: context, builder: (context) { @@ -447,7 +448,7 @@ class _OffShelfPage extends State { ), onTap: () { Navigator.of(context).pop(); - queryDelProduct(); + queryDelProduct(productIds); }, ), flex: 1, diff --git a/lib/business_system/home/business_home_page.dart b/lib/business_system/home/business_home_page.dart index 0a0695e0..39c8cc9b 100644 --- a/lib/business_system/home/business_home_page.dart +++ b/lib/business_system/home/business_home_page.dart @@ -567,16 +567,17 @@ class _BusinessHomePage extends State SizedBox( height: 18.h, ), - if (lineChartSample2Data.isNotEmpty) - (lineChartSample2Data.isNotEmpty) - ? NoDataView( - src: "assets/image/bs_no data_logo.webp", - isShowBtn: false, - text: "暂无数据", - fontSize: 16.sp, - margin: EdgeInsets.all(20.h), - ) - : LineChartSample2(lineChartSample2Data, "销售量"), + // if (lineChartSample2Data.isNotEmpty) + // (lineChartSample2Data.isNotEmpty) + // ? NoDataView( + // src: "assets/image/bs_no data_logo.webp", + // isShowBtn: false, + // text: "暂无数据", + // fontSize: 16.sp, + // margin: EdgeInsets.all(20.h), + // ) + // : + LineChartSample2(lineChartSample2Data, "销售量"), ], ), ); diff --git a/lib/business_system/home/overview/trade_order.dart b/lib/business_system/home/overview/trade_order.dart index 33602302..a8bda8b9 100644 --- a/lib/business_system/home/overview/trade_order.dart +++ b/lib/business_system/home/overview/trade_order.dart @@ -177,8 +177,8 @@ class _TradeOrder extends State { alignment: Alignment.center); }); if (baseData != null && baseData.isSuccess) { - int amountIndex = 0; - int numIndex = 0; + double amountIndex = 0; + double numIndex = 0; if (baseData.data.saleBusinessAnalysisVOS.isNotEmpty) { lineChartSample2DataOrderAmount.clear(); lineChartSample2DataOrderNum.clear(); @@ -186,14 +186,14 @@ class _TradeOrder extends State { tradeSummaryList = baseData.data; tradeSummaryList.saleBusinessAnalysisVOS.forEach((element) { lineChartSample2DataOrderAmount.add(LineChartSample2Data( - amountIndex.toDouble(), + amountIndex, double.tryParse(element.localDateBigDecimal.toString()), element.localDateTime.substring(0, 10))); amountIndex += 1; }); tradeSummaryList.saleBusinessAnalysisVOS.forEach((element) { lineChartSample2DataOrderNum.add(LineChartSample2Data( - numIndex.toDouble(), + numIndex, double.tryParse(element.localDateCount.toString()), element.localDateTime.substring(0, 10))); numIndex += 1; @@ -491,7 +491,7 @@ class _TradeOrder extends State { } }, child: Container( - width: 194.w, + width: 200.w, alignment: Alignment.center, padding: EdgeInsets.all(8), decoration: BoxDecoration( diff --git a/lib/business_system/mine/business_mine_page.dart b/lib/business_system/mine/business_mine_page.dart index bdf67831..437e2eb6 100644 --- a/lib/business_system/mine/business_mine_page.dart +++ b/lib/business_system/mine/business_mine_page.dart @@ -106,9 +106,7 @@ class _BusinessMinePage extends State ), onRefresh: () { if (widget.businessLoginInfo != null){ - // if(widget.businessLoginInfo.storeList.length <= 1) queryStoreList(); - // refreshController.refreshCompleted(); } else refreshController.refreshFailed(); diff --git a/lib/business_system/order/order_list.dart b/lib/business_system/order/order_list.dart index 6907f4de..db6f7ae3 100644 --- a/lib/business_system/order/order_list.dart +++ b/lib/business_system/order/order_list.dart @@ -323,13 +323,17 @@ class _OrderList extends State { if(adminOrderDtoList.ticketStatus != null) GestureDetector( behavior: HitTestBehavior.opaque, - onTap: () { + onTap: () { Navigator.of(context) .pushNamed('/router/order_write_off', arguments:{ "tickets":adminOrderDtoList.tickets, - "productName": adminOrderDtoList.orderProductList[index].productName, "orderCode": adminOrderDtoList?.orderCode ?? "", - "userName":adminOrderDtoList?.name ?? "" + "userName":adminOrderDtoList?.name ?? "", + "ticketStatus":adminOrderDtoList?.ticketStatus, + }).then((value) async{ + // _pageIndex = 1; + adminOrderDTOList.clear(); + await _onRefresh(isShowLoad: false); }); }, child: Container( diff --git a/lib/business_system/order/order_write_off.dart b/lib/business_system/order/order_write_off.dart index 32befafd..8b0d7c2d 100644 --- a/lib/business_system/order/order_write_off.dart +++ b/lib/business_system/order/order_write_off.dart @@ -1,11 +1,15 @@ +import 'dart:convert'; + import 'package:dio/dio.dart'; import 'package:flutter/material.dart'; +import 'package:flutter_easyloading/flutter_easyloading.dart'; import 'package:flutter_smart_dialog/flutter_smart_dialog.dart'; import 'package:huixiang/utils/font_weight.dart'; import 'package:huixiang/view_widget/my_appbar.dart'; import 'package:pull_to_refresh/pull_to_refresh.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; +import '../../generated/l10n.dart'; import '../../retrofit/business_api.dart'; import '../../retrofit/data/base_data.dart'; import '../../retrofit/data/business_order_list.dart'; @@ -28,51 +32,21 @@ class _OrderWriteOff extends State { final RefreshController refreshController = RefreshController(); var writeOffCheck = false; List tickets; - String productName; + AdminOrderDtoList adminOrderDTOList; int nameIndex = 0; BusinessApiService businessService; - List itemMap = []; - List skuTickets = []; @override void initState() { super.initState(); tickets = widget.arguments["tickets"]; - productName = widget.arguments["productName"]; - } - - ///单个核销 - singleWiped() async { - if (businessService == null) { - businessService = BusinessApiService(Dio(), - context: context, - token: BusinessInstance.instance.businessToken, - tenant: BusinessInstance.instance.businessTenant, - storeId: widget.arguments["storeId"]); - } - BaseData baseData = await businessService.wiped({ - "pageNum":1, - "pageSize":10, - "productId":"", - "productSkuId":"", - "searchKey":"", - "state":"", - "storeId":"", - "ticketCode":"", - "ticketId":"", - "ticketItemIds":[], - "type":"" - }).catchError((error) {}); - if (baseData != null && baseData.isSuccess) { - SmartDialog.showToast("核销成功", alignment: Alignment.center); - Navigator.pop(context); - } else { - SmartDialog.showToast(baseData.msg, alignment: Alignment.center); - } } ///多个核销 - severalWiped() async { + severalWiped(ticketWipedBatch) async { + // try { + EasyLoading.show( + status: S.current.zhengzaijiazai, maskType: EasyLoadingMaskType.black); if (businessService == null) { businessService = BusinessApiService(Dio(), context: context, @@ -80,27 +54,22 @@ class _OrderWriteOff extends State { tenant: BusinessInstance.instance.businessTenant, storeId: widget.arguments["storeId"]); } - BaseData baseData = await businessService.posTicketRecharge({ - "itemMap":[{ - "productSkuld":tickets[nameIndex].productSkuId ?? "", - "skuTickets":[{ - "number":1, - "skuTicket":tickets[nameIndex].name ?? "", - "state":tickets[nameIndex].state ?? "", - }] - }], - "ticketCode":tickets[nameIndex].code ?? "", - }).catchError((error) {}); + BaseData baseData = await businessService + .wipedBatchs(jsonEncode(ticketWipedBatch).replaceAll("\\\"", "\"")) + .catchError((error) {}); if (baseData != null && baseData.isSuccess) { - SmartDialog.showToast("核销成功", alignment: Alignment.center); + EasyLoading.dismiss(); Navigator.pop(context); + SmartDialog.showToast("核销成功", alignment: Alignment.center); } else { + EasyLoading.dismiss(); SmartDialog.showToast(baseData.msg, alignment: Alignment.center); } + // } finally { + // EasyLoading.dismiss(); + // } } - - @override Widget build(BuildContext context) { return Scaffold( @@ -138,37 +107,56 @@ class _OrderWriteOff extends State { basicInfo(), writeOffInfo(), GestureDetector( - onTap:(){ - if (itemMap.length != 0) itemMap.clear(); - tickets.forEach((element) { - if (element.isSelect) { - skuTickets.add({ - "number":1, - "skuTicket":element.name, - "state":element.state,}); - itemMap.add({ - "productSkuld":element.productSkuId, - "skuTickets":skuTickets - }); - } - }); - if (itemMap.length == 0) { - SmartDialog.showToast("请选择要核销的商品", - alignment: Alignment.center); + onTap: () { + if (widget.arguments["ticketStatus"] == false) { return; } else { - severalWiped(); + List ticketWipedBatch = []; + tickets.forEach((element) { + List skuTickets = []; + element.ticketItemList.forEach((ele) { + if (ele.isSelect) { + skuTickets.add({ + "number": 1, + "skuTicket": ele.name, + "state": ele.state, + }); + } + }); + if (skuTickets.isNotEmpty) { + ticketWipedBatch.add({ + "itemMap": [ + { + "productSkuld": element.productSkuId, + "ticketExchangeName": element.name, + "ticketId": element.id, + "skuTickets": skuTickets + } + ], + "ticketCode": element.code, + }); + } + }); + if (ticketWipedBatch.length == 0) { + SmartDialog.showToast("请选择要核销的商品", + alignment: Alignment.center); + return; + } else { + severalWiped(ticketWipedBatch); + } } }, child: Container( width: double.infinity, alignment: Alignment.center, - margin: EdgeInsets.only(bottom:55.h,), - padding: EdgeInsets.symmetric(vertical:16.h), + margin: EdgeInsets.only( + bottom: 55.h, top: tickets.length < 2 ? 125.h : 0), + padding: EdgeInsets.symmetric(vertical: 16.h), decoration: BoxDecoration( borderRadius: BorderRadius.circular(27), - color: Color(0xFF30415B) - ), + color: widget.arguments["ticketStatus"] == true + ? Color(0xFF30415B) + : Color(0xFFABACAB)), child: Text( "确认核销", style: TextStyle( @@ -227,10 +215,8 @@ class _OrderWriteOff extends State { SizedBox( height: 12.h, ), - basicInfoItem("票券名称:",tickets[nameIndex].name ?? ""), - basicInfoItem("用户名称::",widget?.arguments["userName"] ?? ""), - basicInfoItem("票券编号::",tickets[nameIndex].code ?? ""), - basicInfoItem("订单编号::",widget?.arguments["orderCode"] ?? ""), + basicInfoItem("用户名称::", widget?.arguments["userName"] ?? ""), + basicInfoItem("订单编号::", widget?.arguments["orderCode"] ?? ""), ], ), ); @@ -269,7 +255,7 @@ class _OrderWriteOff extends State { Widget writeOffInfo() { return Container( padding: EdgeInsets.all(12), - margin: EdgeInsets.only(top: 12.h,bottom:30.h), + margin: EdgeInsets.only(top: 12.h, bottom: 30.h), decoration: BoxDecoration( color: Colors.white, borderRadius: BorderRadius.circular( @@ -315,7 +301,7 @@ class _OrderWriteOff extends State { itemBuilder: (context, position) { return GestureDetector( onTap: () { - setState((){ + setState(() { nameIndex = position; }); }, @@ -342,7 +328,7 @@ class _OrderWriteOff extends State { ); } - Widget writeOffInfoItem(Tickets tickets){ + Widget writeOffInfoItem(Tickets tickets) { return Container( width: double.infinity, child: Column( @@ -351,68 +337,65 @@ class _OrderWriteOff extends State { crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.center, children: [ - Expanded(child: Text( + Expanded( + child: Text( tickets?.name ?? "", style: TextStyle( - fontWeight: MyFontWeight.regular, + fontWeight: MyFontWeight.bold, fontSize: 14.sp, - color: tickets.state == 1?Color(0xFF0D0D0D):Color(0xFFABACAB), + color: tickets.state != 9 + ? (tickets.state == 7 + ? Color(0xFFACACAC) + : (tickets.state == 8 + ? Color(0xFFACACAC) + : Color(0xFF30415B))) + : Color(0xFFABACAB), ), )), - Expanded(child: Column( + Expanded( + child: Column( crossAxisAlignment: CrossAxisAlignment.end, children: [ - Padding(padding: EdgeInsets.only(right:10.w), - child: Text( - (tickets.state == 1)?"待核销":"已核销", - style: TextStyle( - fontWeight: MyFontWeight.semi_bold, - fontSize: 12.sp, - color: (tickets.state == 1)?Color(0xFF30415B):Color(0xFFACACAC), - ), - ),), - SizedBox(height:25.h,), - if(tickets.state == 1) - Checkbox( - value: tickets.isSelect, - onChanged: (a) { - setState(() { - tickets.isSelect = !tickets.isSelect; - }); - }, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(2.0), + Padding( + padding: EdgeInsets.only(right: 10.w), + child: Text( + (tickets.state != 9) + ? (tickets.state == 7 + ? "已退款" + : (tickets.state == 8 ? "票券已失效" : "待核销")) + : "已核销", + style: TextStyle( + fontWeight: MyFontWeight.semi_bold, + fontSize: 12.sp, + color: (tickets.state != 9) + ? (tickets.state == 7 + ? Color(0xFFACACAC) + : (tickets.state == 8 + ? Color(0xFFACACAC) + : Color(0xFF30415B))) + : Color(0xFFACACAC), + ), ), - checkColor: Color(0xFFFFFFFF), - fillColor:MaterialStateProperty.all(Color(0xFF30415B)), ), ], )) ], ), - if(tickets.state != 1) - Align( - alignment: Alignment.centerRight, - child:Container( - margin: EdgeInsets.only(right:10.w), - decoration: BoxDecoration( - color: Colors.white, - borderRadius: BorderRadius.circular( - 2, - ), - border: Border.all( - color: Color(0xFFCFCFCF), - width: 1.w, - ), - ), - child: Icon( - Icons.check, - color: Color(0xFFCFCFCF), - size: 14.w, - ) - ),), + ListView.builder( + padding: EdgeInsets.zero, + itemCount: tickets?.ticketItemList?.length ?? 0, + scrollDirection: Axis.vertical, + shrinkWrap: true, + physics: BouncingScrollPhysics(), + itemBuilder: (context, position) { + return GestureDetector( + onTap: () {}, + child: skuTicketsItem(tickets.ticketItemList[position]), + ); + }, + ), Container( - margin: EdgeInsets.only(bottom:11.h,top: 13.h), + margin: EdgeInsets.only(bottom: 11.h, top: 13.h), width: double.infinity, height: 1.h, color: Color(0xFFEBECEF), @@ -422,7 +405,89 @@ class _OrderWriteOff extends State { ); } - Widget writeOffInfoItems(){ + Widget skuTicketsItem(TicketItemList ticketItemList) { + return Container( + width: double.infinity, + child: Row( + crossAxisAlignment: CrossAxisAlignment.center, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Expanded( + child: Text( + ticketItemList?.name ?? "", + style: TextStyle( + fontWeight: MyFontWeight.regular, + fontSize: 12.sp, + color: Color(0xFF0D0D0D), + ), + )), + (tickets[nameIndex].state == 7 || tickets[nameIndex].state == 8) + ? (ticketItemList.state != 9 + ? Container( + margin: EdgeInsets.symmetric(vertical: 20.h), + ) + : Align( + alignment: Alignment.centerRight, + child: Container( + margin: EdgeInsets.only( + right: 15.w, top: 10.h, bottom: 10.h), + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.circular( + 2, + ), + border: Border.all( + color: Color(0xFFCFCFCF), + width: 1.w, + ), + ), + child: Icon( + Icons.check, + color: Color(0xFFCFCFCF), + size: 14.w, + )), + )) + : (ticketItemList.state == 1 + ? Checkbox( + value: ticketItemList.isSelect, + onChanged: (a) { + setState(() { + ticketItemList.isSelect = !ticketItemList.isSelect; + }); + }, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(2.0), + ), + checkColor: Color(0xFFFFFFFF), + fillColor: MaterialStateProperty.all(Color(0xFF30415B)), + ) + : Align( + alignment: Alignment.centerRight, + child: Container( + margin: EdgeInsets.only( + right: 15.w, top: 10.h, bottom: 10.h), + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.circular( + 2, + ), + border: Border.all( + color: Color(0xFFCFCFCF), + width: 1.w, + ), + ), + child: Icon( + Icons.check, + color: Color(0xFFCFCFCF), + size: 14.w, + )), + )) + ], + ), + ); + } + + Widget writeOffInfoItems() { return Container( width: double.infinity, child: Column( @@ -431,7 +496,8 @@ class _OrderWriteOff extends State { crossAxisAlignment: CrossAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.center, children: [ - Expanded(child: Text( + Expanded( + child: Text( "哈哈哈哈哈", style: TextStyle( fontWeight: MyFontWeight.regular, @@ -439,10 +505,12 @@ class _OrderWriteOff extends State { color: Color(0xFF0D0D0D), ), )), - Expanded(child: Column( + Expanded( + child: Column( crossAxisAlignment: CrossAxisAlignment.end, children: [ - Padding(padding: EdgeInsets.only(right:10.w), + Padding( + padding: EdgeInsets.only(right: 10.w), child: Text( "已核销", style: TextStyle( @@ -450,8 +518,11 @@ class _OrderWriteOff extends State { fontSize: 12.sp, color: Color(0xFF30415B), ), - ),), - SizedBox(height:25.h,), + ), + ), + SizedBox( + height: 25.h, + ), Checkbox( value: writeOffCheck, onChanged: (a) { @@ -463,14 +534,14 @@ class _OrderWriteOff extends State { borderRadius: BorderRadius.circular(2.0), ), checkColor: Color(0xFFFFFFFF), - fillColor:MaterialStateProperty.all(Color(0xFF30415B)), + fillColor: MaterialStateProperty.all(Color(0xFF30415B)), ), ], )) ], ), Container( - margin: EdgeInsets.only(bottom:11.h,top: 13.h), + margin: EdgeInsets.only(bottom: 11.h, top: 13.h), width: double.infinity, height: 1.h, color: Color(0xFFEBECEF), diff --git a/lib/home/welfare_page.dart b/lib/home/welfare_page.dart index ed9e2525..895b8b2e 100644 --- a/lib/home/welfare_page.dart +++ b/lib/home/welfare_page.dart @@ -652,7 +652,7 @@ class _WelfarePage extends State { Navigator.of(context) .pushNamed('/router/write_off_page', arguments: { "couponId": cop.id, - "coupon": jsonEncode(cop.toJson()), + "coupon": cop, }); } else { showStoreSelector(cop.storeList); diff --git a/lib/mine/coupon_page.dart b/lib/mine/coupon_page.dart index eae30d08..5f1ba002 100644 --- a/lib/mine/coupon_page.dart +++ b/lib/mine/coupon_page.dart @@ -241,18 +241,21 @@ class _CouponPage extends State { } else { if (coupons[position].bizType == 5 || coupons[position].bizType == 3) { - Navigator.of(context).pushNamed( - '/router/write_off_page', - arguments: { - "couponId": coupons[position].id, - "coupon": jsonEncode(coupons[position]), - }).then((value) { - _onRefresh(); - }); + try{ + Navigator.of(context).pushNamed( + '/router/write_off_page', + arguments: { + "couponId": coupons[position].id, + "coupon": coupons[position], + }).then((value) { + _onRefresh(); + }); + }catch(e){ + print(e); + } } else { showStoreSelector( coupons[position].storeList); - } } }, diff --git a/lib/mine/coupons_page.dart b/lib/mine/coupons_page.dart index a632b486..77b6c654 100644 --- a/lib/mine/coupons_page.dart +++ b/lib/mine/coupons_page.dart @@ -180,7 +180,7 @@ class _CouponsPage extends State { '/router/write_off_page', arguments: { "couponId": coupons[position].id, - "coupon": jsonEncode(coupons[position]), + "coupon": coupons[position], }).then((value) { _onRefresh(); }); diff --git a/lib/mine/roll_center_page.dart b/lib/mine/roll_center_page.dart index d3ca703a..8ae869f0 100644 --- a/lib/mine/roll_center_page.dart +++ b/lib/mine/roll_center_page.dart @@ -134,7 +134,7 @@ class _RollCenterPage extends State { '/router/write_off_page', arguments: { "couponId": coupons[position].id, - "coupon": coupons[position].toJson() + "coupon": coupons[position] }); } else { showStoreSelector(coupons[position].storeList); diff --git a/lib/order/write_off_page.dart b/lib/order/write_off_page.dart index e254c86c..98812535 100644 --- a/lib/order/write_off_page.dart +++ b/lib/order/write_off_page.dart @@ -33,7 +33,7 @@ class WriteOffPage extends StatefulWidget { } class _WriteOffPage extends State { - dynamic coupon; + Coupon coupon; ApiService apiService; CouponDetail queryCoupon; final RefreshController refreshController = RefreshController(); @@ -42,10 +42,10 @@ class _WriteOffPage extends State { void initState() { super.initState(); - coupon = jsonDecode(widget.arguments["coupon"]); + coupon = widget.arguments["coupon"]; if (mounted) setState(() {}); - queryCouponDetail(coupon["memberCouponId"]); + queryCouponDetail(coupon.memberCouponId); } ///查询核销券状态/查询优惠券详情 @@ -60,15 +60,14 @@ class _WriteOffPage extends State { } BaseData baseData = await apiService.couponDetail(memberCouponId); if (baseData != null && baseData.isSuccess) { - setState(() { queryCoupon = baseData.data; if(queryCoupon.status==2){ Navigator.of(context).pop(true); } - else Future.delayed(Duration(seconds: 1), () { - queryCouponDetail(coupon["memberCouponId"]); - }); - }); + // else Future.delayed(Duration(seconds: 15), () { + // queryCouponDetail(coupon["memberCouponId"]); + // }); + // setState(() {}); } else { SmartDialog.showToast(baseData.msg, alignment: Alignment.center); } @@ -127,7 +126,7 @@ class _WriteOffPage extends State { child: Column( children: [ Text( - coupon != null ? coupon["couponName"] : "", + coupon != null ? coupon.couponName : "", style: TextStyle( fontSize: 16.sp, fontWeight: FontWeight.bold, @@ -137,8 +136,8 @@ class _WriteOffPage extends State { height:11.h, ), Text( - (coupon["useStartTime"] == null || coupon["useEndTime"] == null) ? "" : S.of(context).youxiaoqi( - "${coupon["useStartTime"].replaceAll("-", ".").split(" ")[0]}-${coupon["useEndTime"].replaceAll("-", ".").split(" ")[0]}"), + (coupon.useStartTime == null || coupon.useEndTime == null) ? "" : S.of(context).youxiaoqi( + "${coupon.useStartTime.replaceAll("-", ".").split(" ")[0]}-${coupon.useEndTime.replaceAll("-", ".").split(" ")[0]}"), style: TextStyle( fontSize: 12.sp, color: Color(0xFF353535), @@ -203,7 +202,7 @@ class _WriteOffPage extends State { height: 16.h, ), Expanded(child: QrImage( - data: "{\"type\":\"wiped\",\"memberCouponId\":\"${coupon["memberCouponId"]}\"}", + data: "{\"type\":\"wiped\",\"memberCouponId\":\"${coupon.memberCouponId}\"}", version: QrVersions.auto, size: 250.w, gapless: true, @@ -560,7 +559,7 @@ class _WriteOffPage extends State { Container( child: Html( data: - coupon != null ? coupon["remark"] : "", + coupon != null ? coupon.remark : "", customImageRenders: { networkSourceMatcher(): networkImageRender( loadingWidget: () { diff --git a/lib/retrofit/business_api.dart b/lib/retrofit/business_api.dart index a6edb949..e0c74cc4 100644 --- a/lib/retrofit/business_api.dart +++ b/lib/retrofit/business_api.dart @@ -247,20 +247,9 @@ abstract class BusinessApiService { Future> upload(@Part(name: "file") File data, @Part(name: "folderId") int folderId); - ///单个核销 - @POST("ticket/wiped") - Future wiped( - @Body() Map param); - ///批量核销 - @POST("ticket/wipedBatch") - Future wipedBatch( - @Body() Map param); - - - ///pos端核销接口 - @POST("member/posTicketRecharge") - Future posTicketRecharge( - @Body() Map param); + @POST("ticket/wipedBatchs") + Future wipedBatchs( + @Body() String param); } diff --git a/lib/retrofit/business_api.g.dart b/lib/retrofit/business_api.g.dart index 2d51ad52..ed7b51fe 100644 --- a/lib/retrofit/business_api.g.dart +++ b/lib/retrofit/business_api.g.dart @@ -554,64 +554,18 @@ class _BusinessApiService implements BusinessApiService { } @override - Future wiped(param) async { + Future wipedBatchs(param) async { ArgumentError.checkNotNull(param, 'param'); const _extra = {}; final queryParameters = {}; - final _data = {}; - _data.addAll(param ?? {}); - final _result = await _dio.request>('ticket/wiped', - queryParameters: queryParameters, - options: RequestOptions( - method: 'POST', - headers: {}, - extra: _extra, - baseUrl: baseUrl), - data: _data); - final value = BaseData.fromJson( - _result.data, - (json) => json == null ? null : json, - ); - return value; - } - - @override - Future wipedBatch(param) async { - ArgumentError.checkNotNull(param, 'param'); - const _extra = {}; - final queryParameters = {}; - final _data = {}; - _data.addAll(param ?? {}); - final _result = await _dio.request>('ticket/wipedBatch', + final _result = await _dio.request>('ticket/wipedBatchs', queryParameters: queryParameters, options: RequestOptions( method: 'POST', headers: {}, extra: _extra, baseUrl: baseUrl), - data: _data); - final value = BaseData.fromJson( - _result.data, - (json) => json == null ? null : json, - ); - return value; - } - - @override - Future posTicketRecharge(param) async { - ArgumentError.checkNotNull(param, 'param'); - const _extra = {}; - final queryParameters = {}; - final _data = {}; - _data.addAll(param ?? {}); - final _result = await _dio.request>('member/posTicketRecharge', - queryParameters: queryParameters, - options: RequestOptions( - method: 'POST', - headers: {}, - extra: _extra, - baseUrl: baseUrl), - data: _data); + data: param); final value = BaseData.fromJson( _result.data, (json) => json == null ? null : json, diff --git a/lib/retrofit/data/business_order_list.dart b/lib/retrofit/data/business_order_list.dart index 849f59db..136119b2 100644 --- a/lib/retrofit/data/business_order_list.dart +++ b/lib/retrofit/data/business_order_list.dart @@ -1,5 +1,5 @@ -/// total : 12260 -/// adminOrderDTOList : [{"id":"1670299926090743808","orderCode":"202306181318290001","storeName":"一心回乡古桑园","productCount":2,"orderStatus":4,"orderSum":"80.00","paySum":"80.00","createTime":"2023-06-18 13:18:30","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"_oODK34iuq0gsqyS-TyG0E6SxWlbg","name":"","payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":1,"dayFlowCode":"700","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":"2023-06-18 00:00:00","endRefundTime":null,"memberInfo":{"mid":null,"name":null,"phone":"","mark":null},"orderProductList":[{"id":"1670299926174629888","createTime":"2023-06-18 13:18:30","createUser":"1670299754392715264","updateTime":"2023-06-18 13:18:30","updateUser":"1670299754392715264","tenantCode":"1187","storeId":"1509798399048679424","orderId":"1670299926090743808","actInfo":null,"productId":"1511546728703066112","productName":"一心回乡古桑园门票","skuId":"1511546728765980672","skuNameStr":"","skuImg":"","buyNum":2,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"40.00","sellPrice":"40.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"1","takeType":null,"skuTickets":["古桑园单人票*1张"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1670299754392715264","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":false,"tickets":[{"id":"1670299949914390528","createTime":"2023-06-18 13:18:35","createUser":"0","updateTime":"2023-06-18 13:18:35","updateUser":"0","mid":"1670299754392715264","storeId":"1509798399048679424","orderId":"1670299926090743808","orderProductId":"1670299926174629888","productId":"1511546728703066112","productSkuId":"1511546728765980672","ticketWipedTimeTemplateId":"0","amount":"40.00","name":"一心回乡古桑园门票 ","code":"T202306181318357219620001","useStartTime":"2023-06-18 00:00:00","useEndTime":"2023-06-18 17:00:00","finishTime":"2023-06-18 13:19:08","type":"NORMAL","takeType":null,"style":"","state":9,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1187"},{"id":"1670299949931167744","createTime":"2023-06-18 13:18:35","createUser":"0","updateTime":"2023-06-18 13:18:35","updateUser":"0","mid":"1670299754392715264","storeId":"1509798399048679424","orderId":"1670299926090743808","orderProductId":"1670299926174629888","productId":"1511546728703066112","productSkuId":"1511546728765980672","ticketWipedTimeTemplateId":"0","amount":"40.00","name":"一心回乡古桑园门票 ","code":"T202306181318354318130002","useStartTime":"2023-06-18 00:00:00","useEndTime":"2023-06-18 17:00:00","finishTime":"2023-06-18 13:19:08","type":"NORMAL","takeType":null,"style":"","state":9,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1187"}]},{"id":"1670298860821413888","orderCode":"202306181314150004","storeName":"游客服务中心","productCount":1,"orderStatus":4,"orderSum":"21.00","paySum":"21.00","createTime":"2023-06-18 13:14:16","returnType":0,"orderType":5,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"_oODK34qw0YgVKmxTCcPOIkPDadyg","name":"","payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":1,"dayFlowCode":"807","tableId":null,"tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":null,"memberInfo":{"mid":null,"name":null,"phone":"","mark":null},"orderProductList":[{"id":"1670298860833996800","createTime":"2023-06-18 13:14:16","createUser":"1670298846741135360","updateTime":"2023-06-18 13:14:16","updateUser":"1670298846741135360","tenantCode":"1187","storeId":"1657952889512919040","orderId":"1670298860821413888","actInfo":null,"productId":"-2","productName":"扫码支付","skuId":"-2","skuNameStr":"扫码支付","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"21.00","sellPrice":"21.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":false,"batch":0,"deliveries":0,"ticketType":"","ticketDays":"0","takeType":null,"skuTickets":null,"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1670298846741135360","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":null,"tickets":null},{"id":"1670297567398723584","orderCode":"202306181309070004","storeName":"食间餐厅","productCount":1,"orderStatus":4,"orderSum":"239.00","paySum":"239.00","createTime":"2023-06-18 13:09:07","returnType":0,"orderType":5,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"_oODK34r-TK_dJrrbdcHt0BeVp4Kk","name":"","payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":1,"dayFlowCode":"296","tableId":null,"tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":null,"memberInfo":{"mid":null,"name":null,"phone":"","mark":null},"orderProductList":[{"id":"1670297567415500800","createTime":"2023-06-18 13:09:07","createUser":"1670272634157268992","updateTime":"2023-06-18 13:09:07","updateUser":"1670272634157268992","tenantCode":"1187","storeId":"1658649144362795008","orderId":"1670297567398723584","actInfo":null,"productId":"-2","productName":"扫码支付","skuId":"-2","skuNameStr":"扫码支付","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"239.00","sellPrice":"239.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":false,"batch":0,"deliveries":0,"ticketType":"","ticketDays":"0","takeType":null,"skuTickets":null,"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1670272634157268992","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":null,"tickets":null}] +/// total : 54 +/// adminOrderDTOList : [{"id":"1717487051122671616","orderCode":"202310261823170001","storeName":"台南古早味粽","productCount":3,"orderStatus":2,"orderSum":"20.01","paySum":"18.41","createTime":"2023-10-26 18:23:17","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"1.60","orderSource":3,"dayFlowCode":"512","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":null,"memberInfo":null,"orderProductList":[{"id":"1717487051202363392","createTime":"2023-10-26 18:23:17","createUser":"1640233401329909760","updateTime":"2023-10-26 18:23:17","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717487051122671616","actInfo":null,"productId":"1645981572022665216","productName":"台湾粽","skuId":"1645981572102356992","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目11","测试票券项目22","测试票券项目33"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717487051227529216","createTime":"2023-10-26 18:23:17","createUser":"1640233401329909760","updateTime":"2023-10-26 18:23:17","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717487051122671616","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717487051231723520","createTime":"2023-10-26 18:23:17","createUser":"1640233401329909760","updateTime":"2023-10-26 18:23:17","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318285786349568","orderId":"1717487051122671616","actInfo":null,"productId":"1645983425179418624","productName":"炸杏鲍菇","skuId":"1645983425246527488","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目333","测试票券项目555","测试票券项目777"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717488903532838912","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717487051122671616","orderProductId":"1717487051202363392","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261830384001410001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:30:39","finishTime":"2023-10-27 09:59:49","type":"NORMAL","source":null,"takeType":null,"style":"","state":9,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717488903650279424","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"},{"id":"1717488903671250944","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"},{"id":"1717488903675445248","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"}]},{"id":"1717488903574781952","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717487051122671616","orderProductId":"1717487051227529216","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261830389458330002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:30:39","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":2,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717488903679639552","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903574781952","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717488903679639553","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903574781952","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":9,"finishTime":"2023-10-27 10:04:11","isDelete":0,"tenantCode":"1195"}]},{"id":"1717488903620919296","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717487051122671616","orderProductId":"1717487051231723520","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261830382377470003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:30:39","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":2,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717488903683833856","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903620919296","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":9,"finishTime":"2023-10-27 11:26:33","isDelete":0,"tenantCode":"1195"},{"id":"1717488903688028160","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903620919296","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717488903692222464","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903620919296","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717486581926854656","orderCode":"202310261821250001","storeName":"台南古早味粽","productCount":3,"orderStatus":2,"orderSum":"20.01","paySum":"18.41","createTime":"2023-10-26 18:21:25","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"1.60","orderSource":3,"dayFlowCode":"511","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 18:22:34","memberInfo":null,"orderProductList":[{"id":"1717486582128181248","createTime":"2023-10-26 18:21:25","createUser":"1640233401329909760","updateTime":"2023-10-26 18:21:25","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318285786349568","orderId":"1717486581926854656","actInfo":null,"productId":"1645983425179418624","productName":"炸杏鲍菇","skuId":"1645983425246527488","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目333","测试票券项目555","测试票券项目777"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717486582203678720","createTime":"2023-10-26 18:21:25","createUser":"1640233401329909760","updateTime":"2023-10-26 18:21:25","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717486581926854656","actInfo":null,"productId":"1645981572022665216","productName":"台湾粽","skuId":"1645981572102356992","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目11","测试票券项目22","测试票券项目33"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717486582216261632","createTime":"2023-10-26 18:21:25","createUser":"1640233401329909760","updateTime":"2023-10-26 18:21:25","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717486581926854656","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717486870864068608","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717486581926854656","orderProductId":"1717486582128181248","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261822349584800001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:22:34","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717486871128309760","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486870864068608","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486871182835712","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486870864068608","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486871187030016","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486870864068608","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717486870964731904","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717486581926854656","orderProductId":"1717486582203678720","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261822340428310002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:22:34","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717486871195418624","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486870964731904","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486871203807232","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486870964731904","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486871212195840","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486870964731904","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717486871065395200","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717486581926854656","orderProductId":"1717486582216261632","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261822341456680003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:22:34","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717486871220584448","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486871065395200","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486871228973056","createTime":"2023-10-26 18:22:34","createUser":"0","updateTime":"2023-10-26 18:22:34","updateUser":"0","ticketId":"1717486871065395200","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717479052169707520","orderCode":"202310261751290001","storeName":"台南古早味粽","productCount":3,"orderStatus":3,"orderSum":"20.01","paySum":"0","createTime":"2023-10-26 17:51:30","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":0,"couponSubPrice":"0.00","totalDiscountPrice":"1.60","orderSource":3,"dayFlowCode":"510","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":null,"reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 18:14:34","memberInfo":null,"orderProductList":[{"id":"1717479052446531584","createTime":"2023-10-26 17:51:30","createUser":"1640233401329909760","updateTime":"2023-10-26 17:51:30","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717479052169707520","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717479052517834752","createTime":"2023-10-26 17:51:30","createUser":"1640233401329909760","updateTime":"2023-10-26 17:51:30","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318285786349568","orderId":"1717479052169707520","actInfo":null,"productId":"1645983425179418624","productName":"炸杏鲍菇","skuId":"1645983425246527488","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目333","测试票券项目555","测试票券项目777"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717479052530417664","createTime":"2023-10-26 17:51:30","createUser":"1640233401329909760","updateTime":"2023-10-26 17:51:30","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717479052169707520","actInfo":null,"productId":"1645981572022665216","productName":"台湾粽","skuId":"1645981572102356992","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目11","测试票券项目22","测试票券项目33"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717484859393310720","createTime":"2023-10-26 18:14:34","createUser":"0","updateTime":"2023-10-26 18:14:34","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052446531584","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261814348678120001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:14:34","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717484859758215168","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859393310720","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484859816935424","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859393310720","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717484859577860096","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052517834752","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261814341833600002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:14:34","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717484859833712640","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859577860096","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484859842101248","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859577860096","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484859850489856","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859577860096","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717484859691106304","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052530417664","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261814349388630003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:14:34","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717484859858878464","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859691106304","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484859867267072","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859691106304","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484859875655680","createTime":"2023-10-26 18:14:35","createUser":"0","updateTime":"2023-10-26 18:14:35","updateUser":"0","ticketId":"1717484859691106304","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717484910836449280","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052446531584","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261814465122930004","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:14:47","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717484911125856256","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484910836449280","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484911184576512","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484910836449280","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717484910949695488","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052517834752","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261814462124730005","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:14:47","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717484911188770816","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484910949695488","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484911197159424","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484910949695488","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484911205548032","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484910949695488","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717484911062941696","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052530417664","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261814463912940006","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:14:47","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717484911213936640","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484911062941696","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484911222325248","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484911062941696","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717484911230713856","createTime":"2023-10-26 18:14:47","createUser":"0","updateTime":"2023-10-26 18:14:47","updateUser":"0","ticketId":"1717484911062941696","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485165778829312","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052446531584","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261815478910050001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:15:47","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485166051459072","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165778829312","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485166110179328","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165778829312","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485165883686912","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052517834752","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261815479709490002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:15:47","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485166118567936","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165883686912","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485166126956544","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165883686912","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485166135345152","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165883686912","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485165988544512","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052530417664","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261815471401640003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:15:47","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485166139539456","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165988544512","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485166147928064","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165988544512","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485166156316672","createTime":"2023-10-26 18:15:48","createUser":"0","updateTime":"2023-10-26 18:15:48","updateUser":"0","ticketId":"1717485165988544512","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485462983016448","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052446531584","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261816581852080001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:16:58","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485463259840512","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485462983016448","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485463314366464","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485462983016448","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485463096262656","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052517834752","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261816585655540002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:16:58","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485463322755072","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485463096262656","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485463331143680","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485463096262656","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485463339532288","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485463096262656","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485463205314560","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052530417664","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261816581971080003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:16:58","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485463347920896","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485463205314560","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485463352115200","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485463205314560","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485463360503808","createTime":"2023-10-26 18:16:58","createUser":"0","updateTime":"2023-10-26 18:16:58","updateUser":"0","ticketId":"1717485463205314560","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485943826415616","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052446531584","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261818533592460001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:18:53","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485943943856128","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943826415616","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485943964827648","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943826415616","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485943872552960","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052517834752","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261818533496840002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:18:53","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485943964827649","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943872552960","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485943969021952","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943872552960","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485943973216256","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943872552960","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717485943918690304","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052530417664","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261818534527380003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:18:53","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717485943973216257","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943918690304","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485943977410560","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943918690304","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717485943981604864","createTime":"2023-10-26 18:18:53","createUser":"0","updateTime":"2023-10-26 18:18:53","updateUser":"0","ticketId":"1717485943918690304","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717486346798366720","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052446531584","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261820290879620001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:20:29","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717486347050024960","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346798366720","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486347096162304","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346798366720","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717486346899030016","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052517834752","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261820294693180002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:20:29","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717486347104550912","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346899030016","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486347112939520","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346899030016","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486347117133824","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346899030016","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717486346991304704","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717479052169707520","orderProductId":"1717479052530417664","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261820298392020003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:20:29","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717486347125522432","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346991304704","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486347133911040","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346991304704","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717486347142299648","createTime":"2023-10-26 18:20:29","createUser":"0","updateTime":"2023-10-26 18:20:29","updateUser":"0","ticketId":"1717486346991304704","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717460763003584512","orderCode":"202310261638490003","storeName":"台南古早味粽","productCount":3,"orderStatus":2,"orderSum":"30.00","paySum":"30.00","createTime":"2023-10-26 16:38:49","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":3,"dayFlowCode":"509","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 16:40:00","memberInfo":null,"orderProductList":[{"id":"1717460763070693376","createTime":"2023-10-26 16:38:49","createUser":"1640233401329909760","updateTime":"2023-10-26 16:38:49","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717460763003584512","actInfo":null,"productId":"1645981572022665216","productName":"台湾粽","skuId":"1645981572102356992","skuNameStr":"","skuImg":"","buyNum":3,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目11","测试票券项目22","测试票券项目33"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717461059163389952","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717460763003584512","orderProductId":"1717460763070693376","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"台湾粽 ","code":"T202310261640006657780001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:40:00","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717461059326967808","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059163389952","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461059343745024","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059163389952","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461059347939328","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059163389952","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717461059259858944","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717460763003584512","orderProductId":"1717460763070693376","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"台湾粽 ","code":"T202310261640002007230002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:40:00","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717461059352133632","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059259858944","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461059352133633","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059259858944","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461059356327936","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059259858944","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717461059305996288","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717460763003584512","orderProductId":"1717460763070693376","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"台湾粽 ","code":"T202310261640002893200003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:40:00","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717461059360522240","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059305996288","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461059360522241","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059305996288","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461059364716544","createTime":"2023-10-26 16:40:00","createUser":"0","updateTime":"2023-10-26 16:40:00","updateUser":"0","ticketId":"1717461059305996288","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717460074139484160","orderCode":"202310261636050001","storeName":"台南古早味粽","productCount":3,"orderStatus":2,"orderSum":"20.01","paySum":"20.01","createTime":"2023-10-26 16:36:05","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":3,"dayFlowCode":"508","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 16:40:15","memberInfo":null,"orderProductList":[{"id":"1717460074466639872","createTime":"2023-10-26 16:36:05","createUser":"1640233401329909760","updateTime":"2023-10-26 16:36:05","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717460074139484160","actInfo":null,"productId":"1645981572022665216","productName":"台湾粽","skuId":"1645981572102356992","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目11","测试票券项目22","测试票券项目33"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717460074504388608","createTime":"2023-10-26 16:36:05","createUser":"1640233401329909760","updateTime":"2023-10-26 16:36:05","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318285786349568","orderId":"1717460074139484160","actInfo":null,"productId":"1645983425179418624","productName":"炸杏鲍菇","skuId":"1645983425246527488","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目333","测试票券项目555","测试票券项目777"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717460074508582912","createTime":"2023-10-26 16:36:05","createUser":"1640233401329909760","updateTime":"2023-10-26 16:36:05","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717460074139484160","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717461121729822720","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717460074139484160","orderProductId":"1717460074466639872","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"台湾粽 ","code":"T202310261640148859720004","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:40:15","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717461121826291712","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121729822720","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461121843068928","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121729822720","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461121847263232","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121729822720","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717461121763377152","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717460074139484160","orderProductId":"1717460074504388608","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"炸杏鲍菇 ","code":"T202310261640140707970005","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:40:15","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717461121851457536","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121763377152","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461121855651840","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121763377152","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461121855651841","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121763377152","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717461121801125888","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717460074139484160","orderProductId":"1717460074508582912","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261640149501670006","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:40:15","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717461121859846144","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121801125888","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717461121864040448","createTime":"2023-10-26 16:40:15","createUser":"0","updateTime":"2023-10-26 16:40:15","updateUser":"0","ticketId":"1717461121801125888","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717458977177993216","orderCode":"202310261631430003","storeName":"台南古早味粽","productCount":1,"orderStatus":2,"orderSum":"0.01","paySum":"0.01","createTime":"2023-10-26 16:31:44","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":3,"dayFlowCode":"507","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 16:32:35","memberInfo":null,"orderProductList":[{"id":"1717458977454817280","createTime":"2023-10-26 16:31:44","createUser":"1640233401329909760","updateTime":"2023-10-26 16:31:44","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717458977177993216","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717459193440501760","createTime":"2023-10-26 16:32:35","createUser":"0","updateTime":"2023-10-26 16:32:35","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717458977177993216","orderProductId":"1717458977454817280","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261632358501170001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:32:35","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717459193906069504","createTime":"2023-10-26 16:32:35","createUser":"0","updateTime":"2023-10-26 16:32:35","updateUser":"0","ticketId":"1717459193440501760","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717459193922846720","createTime":"2023-10-26 16:32:35","createUser":"0","updateTime":"2023-10-26 16:32:35","updateUser":"0","ticketId":"1717459193440501760","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717458795753373696","orderCode":"202310261631000002","storeName":"台南古早味粽","productCount":1,"orderStatus":2,"orderSum":"0.01","paySum":"0.01","createTime":"2023-10-26 16:31:00","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":3,"dayFlowCode":"506","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 16:31:15","memberInfo":null,"orderProductList":[{"id":"1717458795824676864","createTime":"2023-10-26 16:31:00","createUser":"1640233401329909760","updateTime":"2023-10-26 16:31:00","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717458795753373696","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717458856772108288","createTime":"2023-10-26 16:31:15","createUser":"0","updateTime":"2023-10-26 16:31:15","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717458795753373696","orderProductId":"1717458795824676864","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261631145040890004","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:31:15","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717458856797274112","createTime":"2023-10-26 16:31:15","createUser":"0","updateTime":"2023-10-26 16:31:15","updateUser":"0","ticketId":"1717458856772108288","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717458856814051328","createTime":"2023-10-26 16:31:15","createUser":"0","updateTime":"2023-10-26 16:31:15","updateUser":"0","ticketId":"1717458856772108288","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717458627284959232","orderCode":"202310261630200001","storeName":"庙口阿嫲炸菇菇","productCount":1,"orderStatus":2,"orderSum":"10.00","paySum":"10.00","createTime":"2023-10-26 16:30:20","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":3,"dayFlowCode":"505","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 16:30:36","memberInfo":null,"orderProductList":[{"id":"1717458627352068096","createTime":"2023-10-26 16:30:20","createUser":"1640233401329909760","updateTime":"2023-10-26 16:30:20","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318285786349568","orderId":"1717458627284959232","actInfo":null,"productId":"1645983425179418624","productName":"炸杏鲍菇","skuId":"1645983425246527488","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目333","测试票券项目555","测试票券项目777"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717458694620315648","createTime":"2023-10-26 16:30:36","createUser":"0","updateTime":"2023-10-26 16:30:36","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717458627284959232","orderProductId":"1717458627352068096","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"炸杏鲍菇 ","code":"T202310261630362582420003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:30:36","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717458694645481472","createTime":"2023-10-26 16:30:36","createUser":"0","updateTime":"2023-10-26 16:30:36","updateUser":"0","ticketId":"1717458694620315648","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717458694670647296","createTime":"2023-10-26 16:30:36","createUser":"0","updateTime":"2023-10-26 16:30:36","updateUser":"0","ticketId":"1717458694620315648","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717458694674841600","createTime":"2023-10-26 16:30:36","createUser":"0","updateTime":"2023-10-26 16:30:36","updateUser":"0","ticketId":"1717458694620315648","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717458374246793216","orderCode":"202310261629190002","storeName":"台南古早味粽","productCount":2,"orderStatus":2,"orderSum":"20.00","paySum":"20.00","createTime":"2023-10-26 16:29:20","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":3,"dayFlowCode":"503","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":"2023-11-24 16:29:40","memberInfo":null,"orderProductList":[{"id":"1717458374330679296","createTime":"2023-10-26 16:29:20","createUser":"1640233401329909760","updateTime":"2023-10-26 16:29:20","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318285786349568","orderId":"1717458374246793216","actInfo":null,"productId":"1645983425179418624","productName":"炸杏鲍菇","skuId":"1645983425246527488","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目333","测试票券项目555","测试票券项目777"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717458374355845120","createTime":"2023-10-26 16:29:20","createUser":"1640233401329909760","updateTime":"2023-10-26 16:29:20","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717458374246793216","actInfo":null,"productId":"1645981572022665216","productName":"台湾粽","skuId":"1645981572102356992","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目11","测试票券项目22","测试票券项目33"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":true,"tickets":[{"id":"1717458457218514944","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717458374246793216","orderProductId":"1717458374330679296","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"炸杏鲍菇 ","code":"T202310261629394311470001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:29:40","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717458457403064320","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","ticketId":"1717458457218514944","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717458457424035840","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","ticketId":"1717458457218514944","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717458457424035841","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","ticketId":"1717458457218514944","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]},{"id":"1717458457268846592","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717458374246793216","orderProductId":"1717458374355845120","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"10.00","name":"台湾粽 ","code":"T202310261629396300800002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 16:29:40","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":1,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717458457428230144","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","ticketId":"1717458457268846592","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717458457432424448","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","ticketId":"1717458457268846592","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717458457440813056","createTime":"2023-10-26 16:29:40","createUser":"0","updateTime":"2023-10-26 16:29:40","updateUser":"0","ticketId":"1717458457268846592","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}]},{"id":"1717458304692649984","orderCode":"202310261629030001","storeName":"台南古早味粽","productCount":1,"orderStatus":2,"orderSum":"0.01","paySum":"0.01","createTime":"2023-10-26 16:29:03","returnType":0,"orderType":0,"returnCode":null,"returnStatus":null,"applyTime":null,"applySum":null,"memberAccount":"郑州小吃街","name":null,"payStatus":1,"couponSubPrice":"0.00","totalDiscountPrice":"0.00","orderSource":3,"dayFlowCode":"502","tableId":"0","tableName":null,"realPeople":null,"refundStatus":0,"notes":"","payNum":"","reason":null,"isSubscribe":false,"subcribeTime":null,"endRefundTime":null,"memberInfo":null,"orderProductList":[{"id":"1717458304768147456","createTime":"2023-10-26 16:29:03","createUser":"1640233401329909760","updateTime":"2023-10-26 16:29:03","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717458304692649984","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}],"mid":"1640233401329909760","isTakeOut":0,"logisticsId":"0","shipperCode":"","logisticsName":"","logisticsNum":"","logisticsCase":null,"postFee":"0.00","finalPayPrice":"0.00","ticketStatus":null,"tickets":null}] class BusinessOrderList { BusinessOrderList({ @@ -39,27 +39,27 @@ BusinessOrderList copyWith({ num total, } -/// id : "1670299926090743808" -/// orderCode : "202306181318290001" -/// storeName : "一心回乡古桑园" -/// productCount : 2 -/// orderStatus : 4 -/// orderSum : "80.00" -/// paySum : "80.00" -/// createTime : "2023-06-18 13:18:30" +/// id : "1717487051122671616" +/// orderCode : "202310261823170001" +/// storeName : "台南古早味粽" +/// productCount : 3 +/// orderStatus : 2 +/// orderSum : "20.01" +/// paySum : "18.41" +/// createTime : "2023-10-26 18:23:17" /// returnType : 0 /// orderType : 0 /// returnCode : null /// returnStatus : null /// applyTime : null /// applySum : null -/// memberAccount : "_oODK34iuq0gsqyS-TyG0E6SxWlbg" -/// name : "" +/// memberAccount : "郑州小吃街" +/// name : null /// payStatus : 1 /// couponSubPrice : "0.00" -/// totalDiscountPrice : "0.00" -/// orderSource : 1 -/// dayFlowCode : "700" +/// totalDiscountPrice : "1.60" +/// orderSource : 3 +/// dayFlowCode : "512" /// tableId : "0" /// tableName : null /// realPeople : null @@ -68,11 +68,11 @@ BusinessOrderList copyWith({ num total, /// payNum : "" /// reason : null /// isSubscribe : false -/// subcribeTime : "2023-06-18 00:00:00" +/// subcribeTime : null /// endRefundTime : null -/// memberInfo : {"mid":null,"name":null,"phone":"","mark":null} -/// orderProductList : [{"id":"1670299926174629888","createTime":"2023-06-18 13:18:30","createUser":"1670299754392715264","updateTime":"2023-06-18 13:18:30","updateUser":"1670299754392715264","tenantCode":"1187","storeId":"1509798399048679424","orderId":"1670299926090743808","actInfo":null,"productId":"1511546728703066112","productName":"一心回乡古桑园门票","skuId":"1511546728765980672","skuNameStr":"","skuImg":"","buyNum":2,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"40.00","sellPrice":"40.00","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":100,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"1","takeType":null,"skuTickets":["古桑园单人票*1张"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}] -/// mid : "1670299754392715264" +/// memberInfo : null +/// orderProductList : [{"id":"1717487051202363392","createTime":"2023-10-26 18:23:17","createUser":"1640233401329909760","updateTime":"2023-10-26 18:23:17","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717487051122671616","actInfo":null,"productId":"1645981572022665216","productName":"台湾粽","skuId":"1645981572102356992","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目11","测试票券项目22","测试票券项目33"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717487051227529216","createTime":"2023-10-26 18:23:17","createUser":"1640233401329909760","updateTime":"2023-10-26 18:23:17","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318098540036096","orderId":"1717487051122671616","actInfo":null,"productId":"1645714128276291584","productName":"四神汤","skuId":"1645714128343400448","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"8.00","sellPrice":"0.01","postPay":"0.00","isDelete":0,"discountAmount":"0.00","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试规格","测试规格222"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"},{"id":"1717487051231723520","createTime":"2023-10-26 18:23:17","createUser":"1640233401329909760","updateTime":"2023-10-26 18:23:17","updateUser":"1640233401329909760","tenantCode":"1195","storeId":"1645318285786349568","orderId":"1717487051122671616","actInfo":null,"productId":"1645983425179418624","productName":"炸杏鲍菇","skuId":"1645983425246527488","skuNameStr":"","skuImg":"","buyNum":1,"refundNum":0,"type":0,"reason":null,"weight":0.0,"applyPrice":"10.00","sellPrice":"10.00","postPay":"0.00","isDelete":0,"discountAmount":"0.80","discountPercent":92,"status":true,"batch":1,"deliveries":0,"ticketType":"NORMAL","ticketDays":"0","takeType":null,"skuTickets":["测试票券项目333","测试票券项目555","测试票券项目777"],"ticketStyle":"","setMealDataList":null,"packagingFee":"0.00"}] +/// mid : "1640233401329909760" /// isTakeOut : 0 /// logisticsId : "0" /// shipperCode : "" @@ -81,8 +81,8 @@ BusinessOrderList copyWith({ num total, /// logisticsCase : null /// postFee : "0.00" /// finalPayPrice : "0.00" -/// ticketStatus : false -/// tickets : [{"id":"1670299949914390528","createTime":"2023-06-18 13:18:35","createUser":"0","updateTime":"2023-06-18 13:18:35","updateUser":"0","mid":"1670299754392715264","storeId":"1509798399048679424","orderId":"1670299926090743808","orderProductId":"1670299926174629888","productId":"1511546728703066112","productSkuId":"1511546728765980672","ticketWipedTimeTemplateId":"0","amount":"40.00","name":"一心回乡古桑园门票 ","code":"T202306181318357219620001","useStartTime":"2023-06-18 00:00:00","useEndTime":"2023-06-18 17:00:00","finishTime":"2023-06-18 13:19:08","type":"NORMAL","takeType":null,"style":"","state":9,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1187"},{"id":"1670299949931167744","createTime":"2023-06-18 13:18:35","createUser":"0","updateTime":"2023-06-18 13:18:35","updateUser":"0","mid":"1670299754392715264","storeId":"1509798399048679424","orderId":"1670299926090743808","orderProductId":"1670299926174629888","productId":"1511546728703066112","productSkuId":"1511546728765980672","ticketWipedTimeTemplateId":"0","amount":"40.00","name":"一心回乡古桑园门票 ","code":"T202306181318354318130002","useStartTime":"2023-06-18 00:00:00","useEndTime":"2023-06-18 17:00:00","finishTime":"2023-06-18 13:19:08","type":"NORMAL","takeType":null,"style":"","state":9,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1187"}] +/// ticketStatus : true +/// tickets : [{"id":"1717488903532838912","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717487051122671616","orderProductId":"1717487051202363392","productId":"1645981572022665216","productSkuId":"1645981572102356992","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"台湾粽 ","code":"T202310261830384001410001","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:30:39","finishTime":"2023-10-27 09:59:49","type":"NORMAL","source":null,"takeType":null,"style":"","state":9,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717488903650279424","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"},{"id":"1717488903671250944","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"},{"id":"1717488903675445248","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"}]},{"id":"1717488903574781952","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717487051122671616","orderProductId":"1717487051227529216","productId":"1645714128276291584","productSkuId":"1645714128343400448","ticketWipedTimeTemplateId":"0","amount":"0.01","name":"四神汤 ","code":"T202310261830389458330002","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:30:39","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":2,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717488903679639552","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903574781952","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717488903679639553","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903574781952","relationType":"PRODUCT","relationId":"1645714128343400448","name":"测试规格222","showImage":"","state":9,"finishTime":"2023-10-27 10:04:11","isDelete":0,"tenantCode":"1195"}]},{"id":"1717488903620919296","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","mid":"1640233401329909760","storeId":"0","orderId":"1717487051122671616","orderProductId":"1717487051231723520","productId":"1645983425179418624","productSkuId":"1645983425246527488","ticketWipedTimeTemplateId":null,"amount":"9.20","name":"炸杏鲍菇 ","code":"T202310261830382377470003","useStartTime":"2023-10-26 00:00:00","useEndTime":"2023-11-24 18:30:39","finishTime":null,"type":"NORMAL","source":null,"takeType":null,"style":"","state":2,"canSettlement":true,"canSubscribe":true,"isDelete":0,"tenantCode":"1195","ticketItemList":[{"id":"1717488903683833856","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903620919296","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目333","showImage":"","state":9,"finishTime":"2023-10-27 11:26:33","isDelete":0,"tenantCode":"1195"},{"id":"1717488903688028160","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903620919296","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目555","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"},{"id":"1717488903692222464","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903620919296","relationType":"PRODUCT","relationId":"1645983425246527488","name":"测试票券项目777","showImage":"","state":1,"finishTime":null,"isDelete":0,"tenantCode":"1195"}]}] class AdminOrderDtoList { AdminOrderDtoList({ @@ -101,7 +101,7 @@ class AdminOrderDtoList { dynamic applyTime, dynamic applySum, String memberAccount, - String name, + dynamic name, num payStatus, String couponSubPrice, String totalDiscountPrice, @@ -115,9 +115,9 @@ class AdminOrderDtoList { String payNum, dynamic reason, bool isSubscribe, - String subcribeTime, + dynamic subcribeTime, dynamic endRefundTime, - MemberInfo memberInfo, + dynamic memberInfo, List orderProductList, String mid, num isTakeOut, @@ -208,7 +208,7 @@ class AdminOrderDtoList { _isSubscribe = json['isSubscribe']; _subcribeTime = json['subcribeTime']; _endRefundTime = json['endRefundTime']; - _memberInfo = json['memberInfo'] != null ? MemberInfo.fromJson(json['memberInfo']) : null; + _memberInfo = json['memberInfo']; if (json['orderProductList'] != null) { _orderProductList = []; json['orderProductList'].forEach((v) { @@ -247,7 +247,7 @@ class AdminOrderDtoList { dynamic _applyTime; dynamic _applySum; String _memberAccount; - String _name; + dynamic _name; num _payStatus; String _couponSubPrice; String _totalDiscountPrice; @@ -261,9 +261,9 @@ class AdminOrderDtoList { String _payNum; dynamic _reason; bool _isSubscribe; - String _subcribeTime; + dynamic _subcribeTime; dynamic _endRefundTime; - MemberInfo _memberInfo; + dynamic _memberInfo; List _orderProductList; String _mid; num _isTakeOut; @@ -291,7 +291,7 @@ AdminOrderDtoList copyWith({ String id, dynamic applyTime, dynamic applySum, String memberAccount, - String name, + dynamic name, num payStatus, String couponSubPrice, String totalDiscountPrice, @@ -305,9 +305,9 @@ AdminOrderDtoList copyWith({ String id, String payNum, dynamic reason, bool isSubscribe, - String subcribeTime, + dynamic subcribeTime, dynamic endRefundTime, - MemberInfo memberInfo, + dynamic memberInfo, List orderProductList, String mid, num isTakeOut, @@ -380,7 +380,7 @@ AdminOrderDtoList copyWith({ String id, dynamic get applyTime => _applyTime; dynamic get applySum => _applySum; String get memberAccount => _memberAccount; - String get name => _name; + dynamic get name => _name; num get payStatus => _payStatus; String get couponSubPrice => _couponSubPrice; String get totalDiscountPrice => _totalDiscountPrice; @@ -394,9 +394,9 @@ AdminOrderDtoList copyWith({ String id, String get payNum => _payNum; dynamic get reason => _reason; bool get isSubscribe => _isSubscribe; - String get subcribeTime => _subcribeTime; + dynamic get subcribeTime => _subcribeTime; dynamic get endRefundTime => _endRefundTime; - MemberInfo get memberInfo => _memberInfo; + dynamic get memberInfo => _memberInfo; List get orderProductList => _orderProductList; String get mid => _mid; num get isTakeOut => _isTakeOut; @@ -410,7 +410,6 @@ AdminOrderDtoList copyWith({ String id, bool get ticketStatus => _ticketStatus; List get tickets => _tickets; - Map toJson() { final map = {}; map['id'] = _id; @@ -444,9 +443,7 @@ AdminOrderDtoList copyWith({ String id, map['isSubscribe'] = _isSubscribe; map['subcribeTime'] = _subcribeTime; map['endRefundTime'] = _endRefundTime; - if (_memberInfo != null) { - map['memberInfo'] = _memberInfo.toJson(); - } + map['memberInfo'] = _memberInfo; if (_orderProductList != null) { map['orderProductList'] = _orderProductList.map((v) => v.toJson()).toList(); } @@ -468,32 +465,34 @@ AdminOrderDtoList copyWith({ String id, } -/// id : "1670299949914390528" -/// createTime : "2023-06-18 13:18:35" +/// id : "1717488903532838912" +/// createTime : "2023-10-26 18:30:39" /// createUser : "0" -/// updateTime : "2023-06-18 13:18:35" +/// updateTime : "2023-10-26 18:30:39" /// updateUser : "0" -/// mid : "1670299754392715264" -/// storeId : "1509798399048679424" -/// orderId : "1670299926090743808" -/// orderProductId : "1670299926174629888" -/// productId : "1511546728703066112" -/// productSkuId : "1511546728765980672" -/// ticketWipedTimeTemplateId : "0" -/// amount : "40.00" -/// name : "一心回乡古桑园门票 " -/// code : "T202306181318357219620001" -/// useStartTime : "2023-06-18 00:00:00" -/// useEndTime : "2023-06-18 17:00:00" -/// finishTime : "2023-06-18 13:19:08" +/// mid : "1640233401329909760" +/// storeId : "0" +/// orderId : "1717487051122671616" +/// orderProductId : "1717487051202363392" +/// productId : "1645981572022665216" +/// productSkuId : "1645981572102356992" +/// ticketWipedTimeTemplateId : null +/// amount : "9.20" +/// name : "台湾粽 " +/// code : "T202310261830384001410001" +/// useStartTime : "2023-10-26 00:00:00" +/// useEndTime : "2023-11-24 18:30:39" +/// finishTime : "2023-10-27 09:59:49" /// type : "NORMAL" +/// source : null /// takeType : null /// style : "" /// state : 9 /// canSettlement : true /// canSubscribe : true /// isDelete : 0 -/// tenantCode : "1187" +/// tenantCode : "1195" +/// ticketItemList : [{"id":"1717488903650279424","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目11","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"},{"id":"1717488903671250944","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目22","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"},{"id":"1717488903675445248","createTime":"2023-10-26 18:30:39","createUser":"0","updateTime":"2023-10-26 18:30:39","updateUser":"0","ticketId":"1717488903532838912","relationType":"PRODUCT","relationId":"1645981572102356992","name":"测试票券项目33","showImage":"","state":9,"finishTime":"2023-10-27 09:59:49","isDelete":0,"tenantCode":"1195"}] class Tickets { Tickets({ @@ -508,7 +507,7 @@ class Tickets { String orderProductId, String productId, String productSkuId, - String ticketWipedTimeTemplateId, + dynamic ticketWipedTimeTemplateId, String amount, String name, String code, @@ -516,13 +515,15 @@ class Tickets { String useEndTime, String finishTime, String type, + dynamic source, dynamic takeType, String style, num state, bool canSettlement, bool canSubscribe, num isDelete, - String tenantCode,}){ + String tenantCode, + List ticketItemList,}){ _id = id; _createTime = createTime; _createUser = createUser; @@ -542,6 +543,7 @@ class Tickets { _useEndTime = useEndTime; _finishTime = finishTime; _type = type; + _source = source; _takeType = takeType; _style = style; _state = state; @@ -549,6 +551,7 @@ class Tickets { _canSubscribe = canSubscribe; _isDelete = isDelete; _tenantCode = tenantCode; + _ticketItemList = ticketItemList; } Tickets.fromJson(dynamic json) { @@ -571,6 +574,7 @@ class Tickets { _useEndTime = json['useEndTime']; _finishTime = json['finishTime']; _type = json['type']; + _source = json['source']; _takeType = json['takeType']; _style = json['style']; _state = json['state']; @@ -578,6 +582,12 @@ class Tickets { _canSubscribe = json['canSubscribe']; _isDelete = json['isDelete']; _tenantCode = json['tenantCode']; + if (json['ticketItemList'] != null) { + _ticketItemList = []; + json['ticketItemList'].forEach((v) { + _ticketItemList.add(TicketItemList.fromJson(v)); + }); + } } String _id; String _createTime; @@ -590,7 +600,7 @@ class Tickets { String _orderProductId; String _productId; String _productSkuId; - String _ticketWipedTimeTemplateId; + dynamic _ticketWipedTimeTemplateId; String _amount; String _name; String _code; @@ -598,6 +608,7 @@ class Tickets { String _useEndTime; String _finishTime; String _type; + dynamic _source; dynamic _takeType; String _style; num _state; @@ -605,6 +616,7 @@ class Tickets { bool _canSubscribe; num _isDelete; String _tenantCode; + List _ticketItemList; Tickets copyWith({ String id, String createTime, String createUser, @@ -616,7 +628,7 @@ Tickets copyWith({ String id, String orderProductId, String productId, String productSkuId, - String ticketWipedTimeTemplateId, + dynamic ticketWipedTimeTemplateId, String amount, String name, String code, @@ -624,6 +636,7 @@ Tickets copyWith({ String id, String useEndTime, String finishTime, String type, + dynamic source, dynamic takeType, String style, num state, @@ -631,6 +644,7 @@ Tickets copyWith({ String id, bool canSubscribe, num isDelete, String tenantCode, + List ticketItemList, }) => Tickets( id: id ?? _id, createTime: createTime ?? _createTime, createUser: createUser ?? _createUser, @@ -650,6 +664,7 @@ Tickets copyWith({ String id, useEndTime: useEndTime ?? _useEndTime, finishTime: finishTime ?? _finishTime, type: type ?? _type, + source: source ?? _source, takeType: takeType ?? _takeType, style: style ?? _style, state: state ?? _state, @@ -657,6 +672,7 @@ Tickets copyWith({ String id, canSubscribe: canSubscribe ?? _canSubscribe, isDelete: isDelete ?? _isDelete, tenantCode: tenantCode ?? _tenantCode, + ticketItemList: ticketItemList ?? _ticketItemList, ); String get id => _id; String get createTime => _createTime; @@ -669,7 +685,7 @@ Tickets copyWith({ String id, String get orderProductId => _orderProductId; String get productId => _productId; String get productSkuId => _productSkuId; - String get ticketWipedTimeTemplateId => _ticketWipedTimeTemplateId; + dynamic get ticketWipedTimeTemplateId => _ticketWipedTimeTemplateId; String get amount => _amount; String get name => _name; String get code => _code; @@ -677,6 +693,7 @@ Tickets copyWith({ String id, String get useEndTime => _useEndTime; String get finishTime => _finishTime; String get type => _type; + dynamic get source => _source; dynamic get takeType => _takeType; String get style => _style; num get state => _state; @@ -684,13 +701,7 @@ Tickets copyWith({ String id, bool get canSubscribe => _canSubscribe; num get isDelete => _isDelete; String get tenantCode => _tenantCode; - bool _isSelect = false; - - bool get isSelect => _isSelect; - - set isSelect(bool value) { - _isSelect = value; - } + List get ticketItemList => _ticketItemList; Map toJson() { final map = {}; @@ -713,6 +724,7 @@ Tickets copyWith({ String id, map['useEndTime'] = _useEndTime; map['finishTime'] = _finishTime; map['type'] = _type; + map['source'] = _source; map['takeType'] = _takeType; map['style'] = _style; map['state'] = _state; @@ -720,43 +732,195 @@ Tickets copyWith({ String id, map['canSubscribe'] = _canSubscribe; map['isDelete'] = _isDelete; map['tenantCode'] = _tenantCode; + if (_ticketItemList != null) { + map['ticketItemList'] = _ticketItemList.map((v) => v.toJson()).toList(); + } + return map; + } + +} + +/// id : "1717488903650279424" +/// createTime : "2023-10-26 18:30:39" +/// createUser : "0" +/// updateTime : "2023-10-26 18:30:39" +/// updateUser : "0" +/// ticketId : "1717488903532838912" +/// relationType : "PRODUCT" +/// relationId : "1645981572102356992" +/// name : "测试票券项目11" +/// showImage : "" +/// state : 9 +/// finishTime : "2023-10-27 09:59:49" +/// isDelete : 0 +/// tenantCode : "1195" + +class TicketItemList { + TicketItemList({ + String id, + String createTime, + String createUser, + String updateTime, + String updateUser, + String ticketId, + String relationType, + String relationId, + String name, + String showImage, + num state, + String finishTime, + num isDelete, + String tenantCode,}){ + _id = id; + _createTime = createTime; + _createUser = createUser; + _updateTime = updateTime; + _updateUser = updateUser; + _ticketId = ticketId; + _relationType = relationType; + _relationId = relationId; + _name = name; + _showImage = showImage; + _state = state; + _finishTime = finishTime; + _isDelete = isDelete; + _tenantCode = tenantCode; +} + + TicketItemList.fromJson(dynamic json) { + _id = json['id']; + _createTime = json['createTime']; + _createUser = json['createUser']; + _updateTime = json['updateTime']; + _updateUser = json['updateUser']; + _ticketId = json['ticketId']; + _relationType = json['relationType']; + _relationId = json['relationId']; + _name = json['name']; + _showImage = json['showImage']; + _state = json['state']; + _finishTime = json['finishTime']; + _isDelete = json['isDelete']; + _tenantCode = json['tenantCode']; + } + String _id; + String _createTime; + String _createUser; + String _updateTime; + String _updateUser; + String _ticketId; + String _relationType; + String _relationId; + String _name; + String _showImage; + num _state; + String _finishTime; + num _isDelete; + String _tenantCode; +TicketItemList copyWith({ String id, + String createTime, + String createUser, + String updateTime, + String updateUser, + String ticketId, + String relationType, + String relationId, + String name, + String showImage, + num state, + String finishTime, + num isDelete, + String tenantCode, +}) => TicketItemList( id: id ?? _id, + createTime: createTime ?? _createTime, + createUser: createUser ?? _createUser, + updateTime: updateTime ?? _updateTime, + updateUser: updateUser ?? _updateUser, + ticketId: ticketId ?? _ticketId, + relationType: relationType ?? _relationType, + relationId: relationId ?? _relationId, + name: name ?? _name, + showImage: showImage ?? _showImage, + state: state ?? _state, + finishTime: finishTime ?? _finishTime, + isDelete: isDelete ?? _isDelete, + tenantCode: tenantCode ?? _tenantCode, +); + String get id => _id; + String get createTime => _createTime; + String get createUser => _createUser; + String get updateTime => _updateTime; + String get updateUser => _updateUser; + String get ticketId => _ticketId; + String get relationType => _relationType; + String get relationId => _relationId; + String get name => _name; + String get showImage => _showImage; + num get state => _state; + String get finishTime => _finishTime; + num get isDelete => _isDelete; + String get tenantCode => _tenantCode; + bool _isSelect = false; + + bool get isSelect => _isSelect; + + set isSelect(bool value) { + _isSelect = value; + } + + Map toJson() { + final map = {}; + map['id'] = _id; + map['createTime'] = _createTime; + map['createUser'] = _createUser; + map['updateTime'] = _updateTime; + map['updateUser'] = _updateUser; + map['ticketId'] = _ticketId; + map['relationType'] = _relationType; + map['relationId'] = _relationId; + map['name'] = _name; + map['showImage'] = _showImage; + map['state'] = _state; + map['finishTime'] = _finishTime; + map['isDelete'] = _isDelete; + map['tenantCode'] = _tenantCode; return map; } } -/// id : "1670299926174629888" -/// createTime : "2023-06-18 13:18:30" -/// createUser : "1670299754392715264" -/// updateTime : "2023-06-18 13:18:30" -/// updateUser : "1670299754392715264" -/// tenantCode : "1187" -/// storeId : "1509798399048679424" -/// orderId : "1670299926090743808" +/// id : "1717487051202363392" +/// createTime : "2023-10-26 18:23:17" +/// createUser : "1640233401329909760" +/// updateTime : "2023-10-26 18:23:17" +/// updateUser : "1640233401329909760" +/// tenantCode : "1195" +/// storeId : "1645318098540036096" +/// orderId : "1717487051122671616" /// actInfo : null -/// productId : "1511546728703066112" -/// productName : "一心回乡古桑园门票" -/// skuId : "1511546728765980672" +/// productId : "1645981572022665216" +/// productName : "台湾粽" +/// skuId : "1645981572102356992" /// skuNameStr : "" /// skuImg : "" -/// buyNum : 2 +/// buyNum : 1 /// refundNum : 0 /// type : 0 /// reason : null /// weight : 0.0 -/// applyPrice : "40.00" -/// sellPrice : "40.00" +/// applyPrice : "10.00" +/// sellPrice : "10.00" /// postPay : "0.00" /// isDelete : 0 -/// discountAmount : "0.00" -/// discountPercent : 100 +/// discountAmount : "0.80" +/// discountPercent : 92 /// status : true /// batch : 1 /// deliveries : 0 /// ticketType : "NORMAL" -/// ticketDays : "1" +/// ticketDays : "0" /// takeType : null -/// skuTickets : ["古桑园单人票*1张"] +/// skuTickets : ["测试票券项目11","测试票券项目22","测试票券项目33"] /// ticketStyle : "" /// setMealDataList : null /// packagingFee : "0.00" @@ -1054,56 +1218,4 @@ OrderProductList copyWith({ String id, return map; } -} - -/// mid : null -/// name : null -/// phone : "" -/// mark : null - -class MemberInfo { - MemberInfo({ - dynamic mid, - dynamic name, - String phone, - dynamic mark,}){ - _mid = mid; - _name = name; - _phone = phone; - _mark = mark; -} - - MemberInfo.fromJson(dynamic json) { - _mid = json['mid']; - _name = json['name']; - _phone = json['phone']; - _mark = json['mark']; - } - dynamic _mid; - dynamic _name; - String _phone; - dynamic _mark; -MemberInfo copyWith({ dynamic mid, - dynamic name, - String phone, - dynamic mark, -}) => MemberInfo( mid: mid ?? _mid, - name: name ?? _name, - phone: phone ?? _phone, - mark: mark ?? _mark, -); - dynamic get mid => _mid; - dynamic get name => _name; - String get phone => _phone; - dynamic get mark => _mark; - - Map toJson() { - final map = {}; - map['mid'] = _mid; - map['name'] = _name; - map['phone'] = _phone; - map['mark'] = _mark; - return map; - } - } \ No newline at end of file diff --git a/pubspec.lock b/pubspec.lock index 84d2037e..fc533d95 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,7 +5,6 @@ packages: dependency: "direct main" description: name: ai_decimal_accuracy - sha256: "2a0f195a0bf9f36e7481a66e03d5b1e4e90b4861438910d63e99e42ddcdebdbb" url: "https://pub.flutter-io.cn" source: hosted version: "1.1.0" @@ -13,7 +12,6 @@ packages: dependency: "direct main" description: name: android_intent_plus - sha256: e49b4d9e26135dd7ef83606aac56bd3105345e8243de903939a15c5aa07cc0ec url: "https://pub.flutter-io.cn" source: hosted version: "1.0.2" @@ -21,7 +19,6 @@ packages: dependency: transitive description: name: args - sha256: b003c3098049a51720352d219b0bb5f219b60fbfb68e7a4748139a06a5676515 url: "https://pub.flutter-io.cn" source: hosted version: "2.3.1" @@ -29,7 +26,6 @@ packages: dependency: transitive description: name: asn1lib - sha256: b74e3842a52c61f8819a1ec8444b4de5419b41a7465e69d4aa681445377398b0 url: "https://pub.flutter-io.cn" source: hosted version: "1.4.1" @@ -37,15 +33,13 @@ packages: dependency: transitive description: name: async - sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0 url: "https://pub.flutter-io.cn" source: hosted - version: "2.10.0" + version: "2.8.2" barcode: dependency: transitive description: name: barcode - sha256: "6f4e44699843c336fcb4a14a4f4221f03d21ae47dd8c4ae4c25ffc7b7dd1cfb8" url: "https://pub.flutter-io.cn" source: hosted version: "2.1.0" @@ -53,7 +47,6 @@ packages: dependency: "direct main" description: name: barcode_widget - sha256: "4fb82c63a008972bc5f0ca83865bd3a5728f596c80f44658aefd7d55b6e65f45" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.1" @@ -61,15 +54,13 @@ packages: dependency: transitive description: name: boolean_selector - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" url: "https://pub.flutter-io.cn" source: hosted - version: "2.1.1" + version: "2.1.0" bubble_tab_indicator: dependency: "direct main" description: name: bubble_tab_indicator - sha256: "0aa37980a00e3374d917f9da8e83acd7f59ba872a3d05c306220063f28f945aa" url: "https://pub.flutter-io.cn" source: hosted version: "0.1.6" @@ -77,23 +68,34 @@ packages: dependency: transitive description: name: characters - sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c url: "https://pub.flutter-io.cn" source: hosted - version: "1.2.1" + version: "1.2.0" charcode: dependency: transitive description: name: charcode - sha256: fb98c0f6d12c920a02ee2d998da788bca066ca5f148492b7085ee23372b12306 url: "https://pub.flutter-io.cn" source: hosted version: "1.3.1" + charts_common: + dependency: transitive + description: + name: charts_common + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.12.0" + charts_flutter: + dependency: "direct main" + description: + name: charts_flutter + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.12.0" chewie: dependency: transitive description: name: chewie - sha256: "90a75721f8cb881be0a38878b246183f69a0490e409f1d8f294b686b89a25f24" url: "https://pub.flutter-io.cn" source: hosted version: "1.3.3" @@ -101,7 +103,6 @@ packages: dependency: "direct main" description: name: chewie_audio - sha256: ac29d37382c4f0d9da8e6f53c78b3e74ffff102040b1e77c7e49e4fa35cd425f url: "https://pub.flutter-io.cn" source: hosted version: "1.4.0" @@ -109,23 +110,20 @@ packages: dependency: transitive description: name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf url: "https://pub.flutter-io.cn" source: hosted - version: "1.1.1" + version: "1.1.0" collection: dependency: transitive description: name: collection - sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0 url: "https://pub.flutter-io.cn" source: hosted - version: "1.17.0" + version: "1.16.0" convert: dependency: transitive description: name: convert - sha256: "1be13198012c1d5bc042dc40ad1d7f16cbd522350984c0c1abf471d6d7e305c6" url: "https://pub.flutter-io.cn" source: hosted version: "3.1.0" @@ -133,7 +131,6 @@ packages: dependency: transitive description: name: crypto - sha256: aa274aa7774f8964e4f4f38cc994db7b6158dd36e9187aaceaddc994b35c6c67 url: "https://pub.flutter-io.cn" source: hosted version: "3.0.2" @@ -141,7 +138,6 @@ packages: dependency: transitive description: name: csslib - sha256: b36c7f7e24c0bdf1bf9a3da461c837d1de64b9f8beb190c9011d8c72a3dfd745 url: "https://pub.flutter-io.cn" source: hosted version: "0.17.2" @@ -149,7 +145,6 @@ packages: dependency: "direct main" description: name: cupertino_icons - sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be url: "https://pub.flutter-io.cn" source: hosted version: "1.0.5" @@ -157,7 +152,6 @@ packages: dependency: "direct main" description: name: dio - sha256: "11979099d9ea182d74b6734340704d628b99c7a8316f9edd7718a297d1bcdd27" url: "https://pub.flutter-io.cn" source: hosted version: "3.0.10" @@ -165,7 +159,6 @@ packages: dependency: "direct main" description: name: emoji_picker_flutter - sha256: a0e8b36a98ca2257b0edd9cb6ef5b4aa2a6fbf3ed67cf11eab96100778741b8a url: "https://pub.flutter-io.cn" source: hosted version: "1.4.1" @@ -173,15 +166,20 @@ packages: dependency: "direct main" description: name: encrypt - sha256: "4fd4e4fdc21b9d7d4141823e1e6515cd94e7b8d84749504c232999fba25d9bbb" url: "https://pub.flutter-io.cn" source: hosted version: "5.0.1" + equatable: + dependency: transitive + description: + name: equatable + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.0.5" event_bus: dependency: "direct main" description: name: event_bus - sha256: "44baa799834f4c803921873e7446a2add0f3efa45e101a054b1f0ab9b95f8edc" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.0" @@ -189,15 +187,13 @@ packages: dependency: transitive description: name: fake_async - sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" url: "https://pub.flutter-io.cn" source: hosted - version: "1.3.1" + version: "1.3.0" ffi: dependency: transitive description: name: ffi - sha256: ed5337a5660c506388a9f012be0288fb38b49020ce2b45fe1f8b8323fe429f99 url: "https://pub.flutter-io.cn" source: hosted version: "2.0.2" @@ -205,15 +201,20 @@ packages: dependency: transitive description: name: file - sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" url: "https://pub.flutter-io.cn" source: hosted version: "6.1.4" + fl_chart: + dependency: "direct main" + description: + name: fl_chart + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.62.0" flare_flutter: dependency: "direct main" description: name: flare_flutter - sha256: "99d63c60f00fac81249ce6410ee015d7b125c63d8278a30da81edf3317a1f6a0" url: "https://pub.flutter-io.cn" source: hosted version: "3.0.2" @@ -226,7 +227,6 @@ packages: dependency: "direct main" description: name: flutter_baidu_mapapi_base - sha256: e0ee788b4e48e4a0f33f321fd45c2375fda2b9f736a6fe32348a272fbb038ba5 url: "https://pub.flutter-io.cn" source: hosted version: "3.2.0" @@ -234,7 +234,6 @@ packages: dependency: "direct main" description: name: flutter_baidu_mapapi_map - sha256: "7db88c86e4353005477064645200c3070cfd775a97be977b157fa65f67d05354" url: "https://pub.flutter-io.cn" source: hosted version: "3.2.1" @@ -242,7 +241,6 @@ packages: dependency: "direct main" description: name: flutter_baidu_mapapi_search - sha256: "8228f356297a97c6a86229056f01211bc2fd7ee4d57d2e64d4d95b7ccf4d494f" url: "https://pub.flutter-io.cn" source: hosted version: "3.2.0" @@ -250,7 +248,6 @@ packages: dependency: "direct main" description: name: flutter_baidu_mapapi_utils - sha256: fbd2c5511f795671bd25783f8640f32f0b26dc68befbe5582092909434c4ba89 url: "https://pub.flutter-io.cn" source: hosted version: "3.2.0" @@ -258,7 +255,6 @@ packages: dependency: "direct main" description: name: flutter_bmflocation - sha256: "1aa324563c3bdfaf08d09dc336599c8a2cbc08053cf74d77903bacf29078a611" url: "https://pub.flutter-io.cn" source: hosted version: "3.2.1" @@ -266,7 +262,6 @@ packages: dependency: "direct main" description: name: flutter_datetime_picker - sha256: "8e695c63c769350e541951227c2775190ec73ceda774a315b1dc9a99d5facfe5" url: "https://pub.flutter-io.cn" source: hosted version: "1.5.1" @@ -274,7 +269,6 @@ packages: dependency: "direct main" description: name: flutter_easyloading - sha256: ba21a3c883544e582f9cc455a4a0907556714e1e9cf0eababfcb600da191d17c url: "https://pub.flutter-io.cn" source: hosted version: "3.0.5" @@ -282,7 +276,6 @@ packages: dependency: "direct main" description: name: flutter_html - sha256: ccb810fcabfce3a7ffaca46e458323915ac7e7fc59082c7357ff848972c02230 url: "https://pub.flutter-io.cn" source: hosted version: "2.2.1" @@ -290,7 +283,6 @@ packages: dependency: transitive description: name: flutter_layout_grid - sha256: "86c1b21520612edfbb93f189b3ec05058470570f3a5c08ce10c92cc76a6e814e" url: "https://pub.flutter-io.cn" source: hosted version: "1.0.6" @@ -303,7 +295,6 @@ packages: dependency: transitive description: name: flutter_math_fork - sha256: cfec964c4975c6becc64291eb9b782fe70df5e0c5bfe0763d9e856432fcc6fcd url: "https://pub.flutter-io.cn" source: hosted version: "0.4.2+2" @@ -311,7 +302,6 @@ packages: dependency: transitive description: name: flutter_page_indicator - sha256: a5b2992228c2827b69faed3977681a3f5c313c7f13d72272decbb2923d1d7176 url: "https://pub.flutter-io.cn" source: hosted version: "0.0.3" @@ -319,7 +309,6 @@ packages: dependency: transitive description: name: flutter_plugin_android_lifecycle - sha256: "96af49aa6b57c10a312106ad6f71deed5a754029c24789bbf620ba784f0bd0b0" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.14" @@ -327,15 +316,20 @@ packages: dependency: "direct main" description: name: flutter_screenutil - sha256: c04bf2f9a41b5130c1071daa34acc04b5e4f479181287a958ece9b31a5b8f89c url: "https://pub.flutter-io.cn" source: hosted version: "5.0.0+1" + flutter_skeleton: + dependency: "direct main" + description: + name: flutter_skeleton + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.1.0+1" flutter_slidable: dependency: "direct main" description: name: flutter_slidable - sha256: "90787334388211e6810065550119b015e6fd3893584641194d500bf5bc7e6235" url: "https://pub.flutter-io.cn" source: hosted version: "1.3.2" @@ -343,7 +337,6 @@ packages: dependency: "direct main" description: name: flutter_smart_dialog - sha256: "3f99d33847629b223f28bb339eff58687d64efed3965a7e44d650d0c89739325" url: "https://pub.flutter-io.cn" source: hosted version: "3.0.6" @@ -351,7 +344,6 @@ packages: dependency: "direct main" description: name: flutter_spinkit - sha256: b39c753e909d4796906c5696a14daf33639a76e017136c8d82bf3e620ce5bb8e url: "https://pub.flutter-io.cn" source: hosted version: "5.2.0" @@ -359,7 +351,6 @@ packages: dependency: "direct main" description: name: flutter_staggered_grid_view - sha256: f0b6d8c0fa7b4b444985cdde68492c0138a4fb6fc57a641b24cb234b7ee0f5c4 url: "https://pub.flutter-io.cn" source: hosted version: "0.4.1" @@ -367,7 +358,6 @@ packages: dependency: "direct main" description: name: flutter_svg - sha256: "9ac1967e2f72a08af11b05b39167920f90d043cf67163d13a544a358c8f31afa" url: "https://pub.flutter-io.cn" source: hosted version: "0.22.0" @@ -375,7 +365,6 @@ packages: dependency: "direct main" description: name: flutter_swiper - sha256: e52a0e894abfa4099a5d4e5098a00597f3b55e25617cdd19e6fe6be5d24858c7 url: "https://pub.flutter-io.cn" source: hosted version: "1.1.6" @@ -393,7 +382,6 @@ packages: dependency: "direct main" description: name: fluwx - sha256: e54837349819d51261be00692071db43fc1ff79dd06cf3a50175a5940249691e url: "https://pub.flutter-io.cn" source: hosted version: "3.9.0+2" @@ -401,7 +389,6 @@ packages: dependency: "direct main" description: name: font_awesome_flutter - sha256: "1f93e5799f0e6c882819e8393a05c6ca5226010f289190f2242ec19f3f0fdba5" url: "https://pub.flutter-io.cn" source: hosted version: "9.2.0" @@ -409,7 +396,6 @@ packages: dependency: "direct main" description: name: gbk2utf8 - sha256: "83a255e974b970d20538c1661bd5b7ee9120e106fbb10478cffcd515ba480e34" url: "https://pub.flutter-io.cn" source: hosted version: "1.0.1" @@ -417,7 +403,6 @@ packages: dependency: "direct main" description: name: gradient_widgets - sha256: d337a8a329da9aefa50b82155d11875c1b9992982f65d15c805aa057a2670536 url: "https://pub.flutter-io.cn" source: hosted version: "0.6.0" @@ -425,7 +410,6 @@ packages: dependency: transitive description: name: graphs - sha256: db4e50f399d69bf7349d4e99e8dabd74fad51c0574f36b8d3613ef465715af52 url: "https://pub.flutter-io.cn" source: hosted version: "0.2.0" @@ -433,7 +417,6 @@ packages: dependency: transitive description: name: html - sha256: "58e3491f7bf0b6a4ea5110c0c688877460d1a6366731155c4a4580e7ded773e8" url: "https://pub.flutter-io.cn" source: hosted version: "0.15.3" @@ -441,7 +424,6 @@ packages: dependency: transitive description: name: http_parser - sha256: "9d2b0626e9e402fc98e6868360da8f256064d6c0b8e4c3edcca5e02fb0b95da9" url: "https://pub.flutter-io.cn" source: hosted version: "3.1.4" @@ -449,15 +431,20 @@ packages: dependency: "direct main" description: name: image_pickers - sha256: "3175436eec5136773230cf25bb0feba7e58bded93c6f4159bd4bae2b90b4c2d3" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.0" + infinite_listview: + dependency: transitive + description: + name: infinite_listview + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.1.0" intl: dependency: "direct main" description: name: intl - sha256: "910f85bce16fb5c6f614e117efa303e85a1731bb0081edf3604a2ae6e9a3cc91" url: "https://pub.flutter-io.cn" source: hosted version: "0.17.0" @@ -465,15 +452,13 @@ packages: dependency: transitive description: name: js - sha256: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7" url: "https://pub.flutter-io.cn" source: hosted - version: "0.6.5" + version: "0.6.4" json_annotation: dependency: "direct main" description: name: json_annotation - sha256: "6cec7404b25d6338c8cb7b30131cd6c760079a4ec1fa7846c55bdda91f9d2819" url: "https://pub.flutter-io.cn" source: hosted version: "3.1.1" @@ -481,7 +466,6 @@ packages: dependency: "direct main" description: name: keframe - sha256: a84add1826c54cd68e6095dbcc00cdd84fd4d97820712bfc8e1d06f41b0bfac3 url: "https://pub.flutter-io.cn" source: hosted version: "3.0.0" @@ -489,7 +473,6 @@ packages: dependency: "direct main" description: name: like_button - sha256: "08e6a45b78888412df5d351786c550205ad3a677e72a0820d5bbc0b063c8a463" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.5" @@ -497,39 +480,41 @@ packages: dependency: "direct main" description: name: logger - sha256: "7ad7215c15420a102ec687bb320a7312afd449bac63bfb1c60d9787c27b9767f" url: "https://pub.flutter-io.cn" source: hosted version: "1.4.0" + logging: + dependency: transitive + description: + name: logging + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.1.0" matcher: dependency: transitive description: name: matcher - sha256: "16db949ceee371e9b99d22f88fa3a73c4e59fd0afed0bd25fc336eb76c198b72" url: "https://pub.flutter-io.cn" source: hosted - version: "0.12.13" + version: "0.12.11" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724 url: "https://pub.flutter-io.cn" source: hosted - version: "0.2.0" + version: "0.1.4" meta: dependency: transitive description: name: meta - sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42" url: "https://pub.flutter-io.cn" source: hosted - version: "1.8.0" + version: "1.7.0" mqtt_client: dependency: "direct main" description: name: mqtt_client - sha256: e8347f8996c33b80a6764a1881e94a8ef5392c2d6e724b9daad65eafa202b0c7 url: "https://pub.flutter-io.cn" source: hosted version: "9.6.8" @@ -537,7 +522,6 @@ packages: dependency: transitive description: name: nested - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" url: "https://pub.flutter-io.cn" source: hosted version: "1.0.0" @@ -545,7 +529,6 @@ packages: dependency: "direct main" description: name: network_to_file_image - sha256: "47528730539abf61ea9b5edf30fe2803b5f8212b2049e1a6cb3b564acadc46dc" url: "https://pub.flutter-io.cn" source: hosted version: "4.0.1" @@ -553,7 +536,6 @@ packages: dependency: "direct main" description: name: number_precision - sha256: "397639f584cdd4fb5965e3b91c03b911b0c8fa9c5be7e7236bbf102bf6f75681" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.2+1" @@ -561,7 +543,6 @@ packages: dependency: transitive description: name: numerus - sha256: "0087ef729d63b96cb347a9c44b9c592f21cecb3605b415bbd18710aef80ce5cb" url: "https://pub.flutter-io.cn" source: hosted version: "1.1.1" @@ -569,7 +550,6 @@ packages: dependency: "direct main" description: name: package_info - sha256: "6c07d9d82c69e16afeeeeb6866fe43985a20b3b50df243091bfc4a4ad2b03b75" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.2" @@ -577,15 +557,13 @@ packages: dependency: transitive description: name: path - sha256: db9d4f58c908a4ba5953fcee2ae317c94889433e5024c27ce74a37f94267945b url: "https://pub.flutter-io.cn" source: hosted - version: "1.8.2" + version: "1.8.1" path_drawing: dependency: transitive description: name: path_drawing - sha256: "3bdd251dae9ffaef944450b73f168610db7e968e7b20daf0c3907f8b4aafc8a2" url: "https://pub.flutter-io.cn" source: hosted version: "0.5.1+1" @@ -593,7 +571,6 @@ packages: dependency: transitive description: name: path_parsing - sha256: ee5c47c1058ad66b4a41746ec3996af9593d0858872807bcd64ac118f0700337 url: "https://pub.flutter-io.cn" source: hosted version: "0.2.1" @@ -601,7 +578,6 @@ packages: dependency: "direct main" description: name: path_provider - sha256: "2dc54a647fcace8c75e9d58cbc648f0c49fa1f160e7c574209e91817c4155580" url: "https://pub.flutter-io.cn" source: hosted version: "1.2.0" @@ -609,7 +585,6 @@ packages: dependency: transitive description: name: path_provider_linux - sha256: "2ae08f2216225427e64ad224a24354221c2c7907e448e6e0e8b57b1eb9f10ad1" url: "https://pub.flutter-io.cn" source: hosted version: "2.1.10" @@ -617,7 +592,6 @@ packages: dependency: transitive description: name: path_provider_platform_interface - sha256: "2e14fc474b8acfc4111ac8eb0e37c2fe70234f9f8cd796f1560d03aa1689fa51" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.0" @@ -625,7 +599,6 @@ packages: dependency: transitive description: name: path_provider_windows - sha256: d3f80b32e83ec208ac95253e0cd4d298e104fbc63cb29c5c69edaed43b0c69d6 url: "https://pub.flutter-io.cn" source: hosted version: "2.1.6" @@ -633,7 +606,6 @@ packages: dependency: "direct main" description: name: permission_handler - sha256: fb4666087528b1cbf91d98771cf50b14f36f4d8756ec7e7a8629dd3cb55442b7 url: "https://pub.flutter-io.cn" source: hosted version: "5.1.0+2" @@ -641,7 +613,6 @@ packages: dependency: transitive description: name: permission_handler_platform_interface - sha256: f7e3c798f7c4dd215e4ca8843695b3a63a5b79c9aa04f296d316f13a15d518ba url: "https://pub.flutter-io.cn" source: hosted version: "2.0.2" @@ -649,7 +620,6 @@ packages: dependency: transitive description: name: petitparser - sha256: "2ebb289dc4764ec397f5cd3ca9881c6d17196130a7d646ed022a0dd9c2e25a71" url: "https://pub.flutter-io.cn" source: hosted version: "5.0.0" @@ -657,7 +627,6 @@ packages: dependency: "direct main" description: name: photo_view - sha256: "26cb153080a2673bebccaf72d3283e82f8f41a47fe5f9bc5ba8634d2e8a9fc8e" url: "https://pub.flutter-io.cn" source: hosted version: "0.13.0" @@ -665,7 +634,6 @@ packages: dependency: "direct main" description: name: pin_input_text_field - sha256: "569861876d5c67994adc58ddd15e93bd0057c4f26d7e5599ccde880d05813463" url: "https://pub.flutter-io.cn" source: hosted version: "4.4.1" @@ -673,7 +641,6 @@ packages: dependency: transitive description: name: platform - sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" url: "https://pub.flutter-io.cn" source: hosted version: "3.1.0" @@ -681,7 +648,6 @@ packages: dependency: transitive description: name: plugin_platform_interface - sha256: c3ebbff365bfb1b5f7b690c9857d2dabea167f35b05eb7586186499b407efb37 url: "https://pub.flutter-io.cn" source: hosted version: "1.0.3" @@ -689,7 +655,6 @@ packages: dependency: transitive description: name: pointycastle - sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" url: "https://pub.flutter-io.cn" source: hosted version: "3.7.3" @@ -697,7 +662,6 @@ packages: dependency: transitive description: name: process - sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" url: "https://pub.flutter-io.cn" source: hosted version: "4.2.4" @@ -705,7 +669,6 @@ packages: dependency: transitive description: name: provider - sha256: cdbe7530b12ecd9eb455bdaa2fcb8d4dad22e80b8afb4798b41479d5ce26847f url: "https://pub.flutter-io.cn" source: hosted version: "6.0.5" @@ -713,7 +676,6 @@ packages: dependency: "direct main" description: name: pull_to_refresh - sha256: bbadd5a931837b57739cf08736bea63167e284e71fb23b218c8c9a6e042aad12 url: "https://pub.flutter-io.cn" source: hosted version: "2.0.0" @@ -721,7 +683,6 @@ packages: dependency: transitive description: name: qr - sha256: "5c4208b4dc0d55c3184d10d83ee0ded6212dc2b5e2ba17c5a0c0aab279128d21" url: "https://pub.flutter-io.cn" source: hosted version: "2.1.0" @@ -729,7 +690,6 @@ packages: dependency: "direct main" description: name: qr_flutter - sha256: c5c121c54cb6dd837b9b9d57eb7bc7ec6df4aee741032060c8833a678c80b87e url: "https://pub.flutter-io.cn" source: hosted version: "4.0.0" @@ -737,7 +697,6 @@ packages: dependency: transitive description: name: quiver - sha256: b1c1ac5ce6688d77f65f3375a9abb9319b3cb32486bdc7a1e0fdf004d7ba4e47 url: "https://pub.flutter-io.cn" source: hosted version: "3.2.1" @@ -745,7 +704,6 @@ packages: dependency: "direct main" description: name: retrofit - sha256: bd4d2817ecb01cdf7ce6d7de62a44716639e82e6b62bd295984c12eb916fb341 url: "https://pub.flutter-io.cn" source: hosted version: "1.3.4+1" @@ -753,7 +711,6 @@ packages: dependency: "direct main" description: name: rive - sha256: cf420a4440bc072698432bd176e70c70cbec01b8c1debe5c56edf2a19b310fbf url: "https://pub.flutter-io.cn" source: hosted version: "0.6.8" @@ -761,7 +718,6 @@ packages: dependency: "direct main" description: name: rxdart - sha256: "2ef8b4e91cb3b55d155e0e34eeae0ac7107974e451495c955ac04ddee8cc21fd" url: "https://pub.flutter-io.cn" source: hosted version: "0.26.0" @@ -769,7 +725,6 @@ packages: dependency: "direct main" description: name: scan - sha256: b343ec36f863a88d41eb4c174b810c055c6bd1f1822b2188ab31aab684fb7cdb url: "https://pub.flutter-io.cn" source: hosted version: "1.6.0" @@ -777,7 +732,6 @@ packages: dependency: "direct main" description: name: shared_preferences - sha256: "78528fd87d0d08ffd3e69551173c026e8eacc7b7079c82eb6a77413957b7e394" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.20" @@ -785,7 +739,6 @@ packages: dependency: transitive description: name: shared_preferences_android - sha256: ad423a80fe7b4e48b50d6111b3ea1027af0e959e49d485712e134863d9c1c521 url: "https://pub.flutter-io.cn" source: hosted version: "2.0.17" @@ -793,7 +746,6 @@ packages: dependency: transitive description: name: shared_preferences_foundation - sha256: "1e755f8583229f185cfca61b1d80fb2344c9d660e1c69ede5450d8f478fa5310" url: "https://pub.flutter-io.cn" source: hosted version: "2.1.5" @@ -801,7 +753,6 @@ packages: dependency: transitive description: name: shared_preferences_linux - sha256: "3a59ed10890a8409ad0faad7bb2957dab4b92b8fbe553257b05d30ed8af2c707" url: "https://pub.flutter-io.cn" source: hosted version: "2.1.5" @@ -809,7 +760,6 @@ packages: dependency: transitive description: name: shared_preferences_platform_interface - sha256: "992f0fdc46d0a3c0ac2e5859f2de0e577bbe51f78a77ee8f357cbe626a2ad32d" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.0" @@ -817,7 +767,6 @@ packages: dependency: transitive description: name: shared_preferences_web - sha256: "0dc2633f215a3d4aa3184c9b2c5766f4711e4e5a6b256e62aafee41f89f1bfb8" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.6" @@ -825,7 +774,6 @@ packages: dependency: transitive description: name: shared_preferences_windows - sha256: "71bcd669bb9cdb6b39f22c4a7728b6d49e934f6cba73157ffa5a54f1eed67436" url: "https://pub.flutter-io.cn" source: hosted version: "2.1.5" @@ -833,7 +781,6 @@ packages: dependency: "direct main" description: name: sharesdk_plugin - sha256: a1a18d01f362c119df1931082e3694591a24b3b00eef2576522e00ef8da3b25e url: "https://pub.flutter-io.cn" source: hosted version: "1.3.10" @@ -841,7 +788,6 @@ packages: dependency: "direct main" description: name: shimmer - sha256: "5f88c883a22e9f9f299e5ba0e4f7e6054857224976a5d9f839d4ebdc94a14ac9" url: "https://pub.flutter-io.cn" source: hosted version: "3.0.0" @@ -849,7 +795,6 @@ packages: dependency: transitive description: name: simple_gesture_detector - sha256: "7ab8ee2027f4323a1574e9eeda55d4279ae499190e119d6b872b3a52b501eb42" url: "https://pub.flutter-io.cn" source: hosted version: "0.1.6" @@ -862,23 +807,20 @@ packages: dependency: transitive description: name: source_span - sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250 url: "https://pub.flutter-io.cn" source: hosted - version: "1.9.1" + version: "1.8.2" stack_trace: dependency: transitive description: name: stack_trace - sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 url: "https://pub.flutter-io.cn" source: hosted - version: "1.11.0" + version: "1.10.0" steel_crypt: dependency: "direct main" description: name: steel_crypt - sha256: "4f86a8ddc690ed1adff486faeb4ceece9e09f59cd90c8bd7e2ff48c42ca271dd" url: "https://pub.flutter-io.cn" source: hosted version: "3.0.0+1" @@ -886,23 +828,34 @@ packages: dependency: transitive description: name: stream_channel - sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" url: "https://pub.flutter-io.cn" source: hosted - version: "2.1.1" + version: "2.1.0" string_scanner: dependency: transitive description: name: string_scanner - sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" url: "https://pub.flutter-io.cn" source: hosted - version: "1.2.0" + version: "1.1.0" + syncfusion_flutter_core: + dependency: transitive + description: + name: syncfusion_flutter_core + url: "https://pub.flutter-io.cn" + source: hosted + version: "19.4.56" + syncfusion_flutter_datepicker: + dependency: "direct main" + description: + name: syncfusion_flutter_datepicker + url: "https://pub.flutter-io.cn" + source: hosted + version: "19.4.56" table_calendar: dependency: "direct main" description: name: table_calendar - sha256: "82dc932c6e07af6e7eeafb2c91e87969746f3b9b59ac222ecf8d75f51c3a4844" url: "https://pub.flutter-io.cn" source: hosted version: "2.3.3" @@ -910,23 +863,20 @@ packages: dependency: transitive description: name: term_glyph - sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 url: "https://pub.flutter-io.cn" source: hosted - version: "1.2.1" + version: "1.2.0" test_api: dependency: transitive description: name: test_api - sha256: ad540f65f92caa91bf21dfc8ffb8c589d6e4dc0c2267818b4cc2792857706206 url: "https://pub.flutter-io.cn" source: hosted - version: "0.4.16" + version: "0.4.9" thumbnails: dependency: "direct main" description: name: thumbnails - sha256: "06b3f727362b3c08a222800e881258dd5d5d42775ad07b64efb60e583dd6de8d" url: "https://pub.flutter-io.cn" source: hosted version: "1.0.1" @@ -934,7 +884,6 @@ packages: dependency: "direct main" description: name: tobias - sha256: "61b35145cdebde36da7a54d211d807a3cb1681c50456d40495fa7109dddd7a44" url: "https://pub.flutter-io.cn" source: hosted version: "2.4.1" @@ -951,7 +900,6 @@ packages: dependency: transitive description: name: transformer_page_view - sha256: "2210531bc4148831061c575070173f32693415be8bbbf5bd2159a38f2adff61c" url: "https://pub.flutter-io.cn" source: hosted version: "0.1.6" @@ -959,7 +907,6 @@ packages: dependency: transitive description: name: tuple - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151 url: "https://pub.flutter-io.cn" source: hosted version: "2.0.2" @@ -967,7 +914,6 @@ packages: dependency: transitive description: name: typed_data - sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c url: "https://pub.flutter-io.cn" source: hosted version: "1.3.2" @@ -975,7 +921,6 @@ packages: dependency: "direct main" description: name: umeng_common_sdk - sha256: fce28065224b0839ffc16b5003d2295dae8aabee290bf639f978536b32ed601d url: "https://pub.flutter-io.cn" source: hosted version: "1.2.6" @@ -983,7 +928,6 @@ packages: dependency: "direct main" description: name: url_launcher - sha256: e1e0c46fcd777c0f0bd7f4541b747c28ad4e925f93344cebf667ef76c695533a url: "https://pub.flutter-io.cn" source: hosted version: "5.7.10" @@ -991,7 +935,6 @@ packages: dependency: transitive description: name: url_launcher_linux - sha256: c489023cdd864a19c0be63bb3796bec21ea4bc16bfe09568953f1828e02151c9 url: "https://pub.flutter-io.cn" source: hosted version: "0.0.1+4" @@ -999,7 +942,6 @@ packages: dependency: transitive description: name: url_launcher_macos - sha256: be04eac5076414469027ce068c360478c3e56e43205bb7efaaa61cbdd3ba890d url: "https://pub.flutter-io.cn" source: hosted version: "0.0.1+9" @@ -1007,7 +949,6 @@ packages: dependency: transitive description: name: url_launcher_platform_interface - sha256: c6bd00f46e8c348703d0ae691850eb2052be8e1338dc3ae6f72af53b962da157 url: "https://pub.flutter-io.cn" source: hosted version: "1.0.9" @@ -1015,7 +956,6 @@ packages: dependency: transitive description: name: url_launcher_web - sha256: eaa6de8ac353681794533edcedd69dd8b39ed987bf2360d172185eff8283dbc2 url: "https://pub.flutter-io.cn" source: hosted version: "0.1.5+3" @@ -1023,7 +963,6 @@ packages: dependency: transitive description: name: url_launcher_windows - sha256: "034479b1dafd8f01de81267d8117eb5ae019e0dddcc23f4b14ed31253a2635d9" url: "https://pub.flutter-io.cn" source: hosted version: "0.0.1+3" @@ -1031,15 +970,13 @@ packages: dependency: transitive description: name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" url: "https://pub.flutter-io.cn" source: hosted - version: "2.1.4" + version: "2.1.2" video_player: dependency: "direct main" description: name: video_player - sha256: "743b57d45251101344057d3b886a5f9a4fbb3eb3e275ac8bb64c3a7fa0c79d4c" url: "https://pub.flutter-io.cn" source: hosted version: "2.2.19" @@ -1047,7 +984,6 @@ packages: dependency: transitive description: name: video_player_android - sha256: b41889c6bc9eaf51790863885349fb5ff8edef2da940291a2da96b80dd649686 url: "https://pub.flutter-io.cn" source: hosted version: "2.3.4" @@ -1055,7 +991,6 @@ packages: dependency: transitive description: name: video_player_avfoundation - sha256: "5df5411ff9d316f1dcbfee284e9838aa686e314f2a722b15c02cb7ce40ef9446" url: "https://pub.flutter-io.cn" source: hosted version: "2.3.9" @@ -1063,7 +998,6 @@ packages: dependency: transitive description: name: video_player_platform_interface - sha256: a1d56477752271a7a0de872d8962bce1dd5fecf463beaf66da417ebebb9ba0f7 url: "https://pub.flutter-io.cn" source: hosted version: "4.2.0" @@ -1071,7 +1005,6 @@ packages: dependency: transitive description: name: video_player_web - sha256: fb3bbeaf0302cb0c31340ebd6075487939aa1fe3b379d1a8784ef852b679940e url: "https://pub.flutter-io.cn" source: hosted version: "2.0.15" @@ -1079,7 +1012,6 @@ packages: dependency: "direct main" description: name: visibility_detector - sha256: "15c54a459ec2c17b4705450483f3d5a2858e733aee893dcee9d75fd04814940d" url: "https://pub.flutter-io.cn" source: hosted version: "0.3.3" @@ -1087,7 +1019,6 @@ packages: dependency: transitive description: name: wakelock - sha256: "769ecf42eb2d07128407b50cb93d7c10bd2ee48f0276ef0119db1d25cc2f87db" url: "https://pub.flutter-io.cn" source: hosted version: "0.6.2" @@ -1095,7 +1026,6 @@ packages: dependency: transitive description: name: wakelock_macos - sha256: "047c6be2f88cb6b76d02553bca5a3a3b95323b15d30867eca53a19a0a319d4cd" url: "https://pub.flutter-io.cn" source: hosted version: "0.4.0" @@ -1103,7 +1033,6 @@ packages: dependency: transitive description: name: wakelock_platform_interface - sha256: "1f4aeb81fb592b863da83d2d0f7b8196067451e4df91046c26b54a403f9de621" url: "https://pub.flutter-io.cn" source: hosted version: "0.3.0" @@ -1111,7 +1040,6 @@ packages: dependency: transitive description: name: wakelock_web - sha256: "1b256b811ee3f0834888efddfe03da8d18d0819317f20f6193e2922b41a501b5" url: "https://pub.flutter-io.cn" source: hosted version: "0.4.0" @@ -1119,7 +1047,6 @@ packages: dependency: transitive description: name: wakelock_windows - sha256: "857f77b3fe6ae82dd045455baa626bc4b93cb9bb6c86bf3f27c182167c3a5567" url: "https://pub.flutter-io.cn" source: hosted version: "0.2.1" @@ -1127,15 +1054,20 @@ packages: dependency: transitive description: name: webview_flutter - sha256: "15900bc32e210fc5a87b08e65473c45ff4fa0ed707f05a84ea2547aaf1d2cfc7" url: "https://pub.flutter-io.cn" source: hosted version: "2.0.14" + widgetpicker: + dependency: "direct main" + description: + name: widgetpicker + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.1.1" win32: dependency: transitive description: name: win32 - sha256: a6f0236dbda0f63aa9a25ad1ff9a9d8a4eaaa5012da0dc59d21afdb1dc361ca4 url: "https://pub.flutter-io.cn" source: hosted version: "3.1.4" @@ -1143,7 +1075,6 @@ packages: dependency: transitive description: name: xdg_directories - sha256: ee1505df1426458f7f60aac270645098d318a8b4766d85fde75f76f2e21807d1 url: "https://pub.flutter-io.cn" source: hosted version: "1.0.0" @@ -1151,10 +1082,9 @@ packages: dependency: transitive description: name: xml - sha256: "80d494c09849dc3f899d227a78c30c5b949b985ededf884cb3f3bcd39f4b447a" url: "https://pub.flutter-io.cn" source: hosted version: "5.4.1" sdks: - dart: ">=2.18.0 <3.0.0" + dart: ">=2.17.0 <3.0.0" flutter: ">=3.0.0"