hyzp_ybqx-Commit119:版本号更新为1.4.24+20220409。按公司要求修改审核逻辑,即使 当前时间 > 抓拍时间 + 审核间隔,也允许用户进行初审和复审审核,只是禁止推送

master
WinUser01 4 years ago
parent 55a95cb3aa
commit 38ce516148

@ -99,10 +99,10 @@ class UserInfo {
copyright_info = '© ' + qx_name_long + '城乡融合发展局 四川省踏石科技\n版权所有,' + service_tel.substring(1); copyright_info = '© ' + qx_name_long + '城乡融合发展局 四川省踏石科技\n版权所有,' + service_tel.substring(1);
copyright_info_PinYin = 'YIBIN SANJIANG NEW AREA BLACK SMOKE CAR CAPTURE SYSTEM'; copyright_info_PinYin = 'YIBIN SANJIANG NEW AREA BLACK SMOKE CAR CAPTURE SYSTEM';
// //
// mapPoi = {text: , pt: {latitude: 28.811272454489966, longitude: 104.67718748580859}, uid: f79d3a036020ce5fa3d23041} // coordinate = {latitude: 28.822633806922394, longitude: 104.75964294854222}
center_latitude = 28.811272454489966; // center_latitude = 28.822633806922394; //
center_longitude = 104.69745647939359; // center_longitude = 104.75964294854222; //
g_zoomLevel = g_zoomLevel_default = 12; // g_zoomLevel = g_zoomLevel_default = 13; //
break; break;
case 511523: // case 511523: //
service_tel = ''; service_tel = '';

@ -176,17 +176,17 @@ class _HyshGroupState extends State<HyshGroup> {
getBtnSizeX( getBtnSizeX(
text: '复审提交', text: '复审提交',
fontColor: 0 == _selectedRadio ? Colors.red : Colors.green, fontColor: 0 == _selectedRadio ? Colors.red : Colors.green,
onPressedFun: 1 == sfyc // onPressedFun: 1 == sfyc
? null // ? null
: () async { // : () async {
onPressedFun: () async {
int ret = -1; int ret = -1;
print('等待复审提交确认'); print('等待复审提交确认');
await Navigator.of(context) await Navigator.of(context)
.push( .push(
PageRouteBuilder( PageRouteBuilder(
opaque: false, opaque: false,
pageBuilder: (context, animation, secondaryAnimation) => pageBuilder: (context, animation, secondaryAnimation) => CustomDialogHysh(
CustomDialogHysh(
shjg: 0 == _selectedRadio ? hyc_text : fhyc_text, shjg: 0 == _selectedRadio ? hyc_text : fhyc_text,
title: '复审', title: '复审',
content: content:
@ -210,20 +210,18 @@ class _HyshGroupState extends State<HyshGroup> {
widget.id, widget.id,
widget.index, widget.index,
mapHyshlx[hyshlx]['audit_workflow'], mapHyshlx[hyshlx]['audit_workflow'],
topTabs_map['auditShuoming_Controller_List'][widget.index] topTabs_map['auditShuoming_Controller_List'][widget.index].text,
.text,
topTabs_map['auditTitle'][widget.index], topTabs_map['auditTitle'][widget.index],
sfyc: sfyc, sfyc: sfyc,
).then((value) { ).then((value) {
eventBus.fire(HycsDataUpdateEvent( eventBus.fire(
'${mapHyshlx[hyshlx]['text']}数据已更新')); HycsDataUpdateEvent('${mapHyshlx[hyshlx]['text']}数据已更新'));
// //
print('tsjj = $tsjj'); print('tsjj = $tsjj');
if (tsjj) { if (tsjj) {
print('before tsjjFun(widget.id, _plateAndID)'); print('before tsjjFun(widget.id, _plateAndID)');
String _plateAndID = String _plateAndID = topTabs_map['car_number_List'].toString() +
topTabs_map['car_number_List'].toString() +
'(ID:${widget.id.toString()})'; '(ID:${widget.id.toString()})';
tsjjFun(widget.id, _plateAndID); tsjjFun(widget.id, _plateAndID);
@ -271,9 +269,10 @@ class _HyshGroupState extends State<HyshGroup> {
getBtnSizeX( getBtnSizeX(
text: '初审提交', text: '初审提交',
fontColor: 0 == _selectedRadio ? Colors.red : Colors.green, fontColor: 0 == _selectedRadio ? Colors.red : Colors.green,
onPressedFun: 1 == sfyc // onPressedFun: 1 == sfyc
? null // ? null
: () async { // : () async {
onPressedFun: () async {
int ret = -1; int ret = -1;
print('等待初审提交确认'); print('等待初审提交确认');
await Navigator.of(context) await Navigator.of(context)
@ -297,13 +296,12 @@ class _HyshGroupState extends State<HyshGroup> {
widget.id, widget.id,
widget.index, widget.index,
mapHyshlx[hyshlx]['audit_workflow'], mapHyshlx[hyshlx]['audit_workflow'],
topTabs_map['auditShuoming_Controller_List'][widget.index] topTabs_map['auditShuoming_Controller_List'][widget.index].text,
.text,
topTabs_map['auditTitle'][widget.index], topTabs_map['auditTitle'][widget.index],
sfyc: 0, sfyc: 0,
).then((value) { ).then((value) {
eventBus.fire( eventBus
HycsDataUpdateEvent('${mapHyshlx[hyshlx]['text']}数据已更新')); .fire(HycsDataUpdateEvent('${mapHyshlx[hyshlx]['text']}数据已更新'));
}); });
} else { } else {
print('用户取消了初审提交'); print('用户取消了初审提交');

Loading…
Cancel
Save