//称重-包括空车和满车称重 var layer; var form; var table; var recordData = null;// 业务数据信息 var snapData;//系统抓拍对象信息 var timerWeight; var paramIntelCard;//设备识别结果 var paramIdCard;//设备识别结果 $(function () { layui.use(['layer', 'laydate', 'form', 'table', 'util'], function () { var util = layui.util; layer = layui.layer; form = layui.form; table = layui.table; layui.laydate.render({ elem: '#test1', theme: '#7b8e9f' }); // 右下角添加固定信息 util.fixbar({ bar1: true, css: { right: 10, bottom: 20 }, bgcolor: '#53adce', click: function (type) { if (type === 'bar1') { layer.closeAll(); layer.open({ type: 2, title: false, shadeClose: true, shade: 0.3, closeBtn: 2, offset: ['50px', '120px'], area: ['1000px', '640px'], content: '../../basic/inout/inout-progress?type=' + type + "&t=" + Math.random() }); } } }); }); //显示流程环节 showProgress(); // 监听重量变化 $(".weight").blur(function () { deAutoByIn(this.name); }); // 初始化WebSocket initInoutWS(companyId, bizType, progress, userId); }); window.onload = function () { //自动连接地磅信息,2.5秒获取一次地磅重量信息 clearInterval(timerWeight); timerWeight = setInterval(function () { flushWeight(); }, 2500); // 加载视频 initVideo(snapDto1, snapDto2, snapDto3); //设置地磅 $("#scaleName").val(weightDto.sort); //监听地磅选择 $("#scaleName").change(function () { layer.confirm('调整地磅需重新加载页面,确定调整?', { btn: ['确定', '取消'] }, function () { updateWeight(); }); }); }; // socket信息返回處理 function socketOnMessage(packet) { //暂无 } //点击称重 function weight() { // 没有业务数据不可执行 if (!recordData) { alertError("没有查询到业务数据,执行被拒绝!"); return; } // 如果是空车称重 if (InoutProgress.WEIGHT_EMPTY == recordData.progress) { form.val("form-data", { emptyWeight: weightDto.weight }); form.render(); } // 如果是满车称重 if (InoutProgress.WEIGHT_FULL == recordData.progress) { form.val("form-data", { fullWeight: weightDto.weight }); form.render(); } // 点击称重自动调用抓拍 snapData = { companyId: companyId, deptId: deptId, progress: recordData.progress, bizType: bizType, plateNum: recordData.plateNum, id1: snapDto1.id, id2: snapDto2.id, id3: snapDto3.id, sort: $("#scaleName").val(), weight: weightDto.weight }; //当前AJAX服务为同步服务,返回数据包装照片信息 var index = layer.load(); $.ajax({ sync: false, type: "POST", url: "../../inout/api/snap-img", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(snapData), success: function (result) { layer.close(index); if (result.code != "0000") { alertError(result.msg); } else { snapData = result.data; } }, error: function () { layer.close(index); alertError("后台调用截图失败,请重新尝试"); } }); //如果是第二次称重,默认执行自动计算 if (InoutProgress.WEIGHT_EMPTY == recordData.progress) { deAutoByIn("emptyWeight"); } } //读智慧卡 function flushICCard() { if (!cardDto.protocol) { flushICCard1(); } else { flushICCard2(); } } /** * 协议读取智慧卡 */ function flushICCard2() { var index = layer.load(); var param = JSON.stringify(cardDto); $.ajax({ type: "POST", url: "../../inout/api/get-icCard", dataType: "json", contentType: "application/json;charset=UTF-8", data: param, success: function (result) { layer.close(index); if (result.code != "0000") { alertError(result.msg); } else { paramIntelCard = data; $("#text-param").text("识别卡号:" + paramIntelCard); flushData(paramIntelCard, null); } }, error: function () { layer.close(index); alertError("IC卡读取失败"); } }); } /** * 本地读取智慧卡 */ function flushICCard1() { var index = layer.load(); $("#text-param").val(null); $("#form-data")[0].reset(); form.render(); recordData = null; $.ajax({ type: "GET", async: true, url: "http://127.0.0.1:9111/ICCARD", data: {}, dataType: "jsonp", jsonp: "callback", jsonpCallback: "jsonpCallback", success: function (json) { var data = json.no; layer.close(index); if (data === "not found") { alertError("请重新读卡!"); } else { paramIntelCard = data; $("#text-param").text("识别卡号:" + paramIntelCard); flushData(paramIntelCard, null); } }, error: function () { layer.close(index); alertError("IC卡读取出错!"); } }); } // 使用插件获取身份证 function flushIdCard() { var index = layer.load(); $.ajax({ type: "GET", async: true, url: "http://127.0.0.1:9111/IDCARD", data: {}, dataType: "jsonp", jsonp: "callback", jsonpCallback: "jsonpCallback", success: function (json) { layer.close(index); var data = json.content; if (data === "not found") { alertError("没有读取到身份证信息!"); return; } paramIdCard = data; $("#text-param").text("识别身份证:" + paramIdCard); flushData(null, paramIdCard); }, error: function () { alertError("没有读取到身份证信息!"); layer.close(index); } }); } function flushByHand() { flushData(null, null); } function flushWeight() { $.ajax({ type: "GET", async: true, timeout: 2000, url: "http://127.0.0.1:9111/WEIGHT", data: {}, dataType: "jsonp", jsonp: "callback", jsonpCallback: "jsonpCallback", success: function (json) { var data = json.content; if (!data) data = 0.0; weightDto.weight = data; $("#weightValue").text(data); $("#img_scale_statule").attr("src", "../../static/images/icon-gree.png"); }, error: function () { weightDto.weight = 0.0; $("#weightValue").text("0.0"); $("#img_scale_statule").attr("src", "../../static/images/icon-red.png"); } }); } // 点击打印,系统判断是否已经执行完成,如果已经完成,直接打印,如果未完成则先执行完成 function printBill() { if (!recordData) { layer.alert("没有获取到业务数据,不支持打印!"); return; } // 从后台获取模版并打印 var data = form.val("form-data"); // 合并更新當前编辑数据 Object.assign(recordData, data); printBillStep2(); } // 点击打印,先执行系统默认执行完成卡回收 function printBillStep2() { var index = layer.load(); $.ajax({ type: "POST", url: "../../basic/inout-report/inout-bill-weight", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(recordData), success: function (result) { layer.close(index); if (result.code != "0000") { layer.msg(result.msg); } else { layer.msg("开始渲染打印单……"); if (companyId && companyId == "5016") { print5016Weight(result.data); } else { printWeight(result.data); } } }, error: function () { layer.close(index); layer.msg("获取打印模版失败,请联系管理员查看原因!!"); } }); } // 表单清空 function resetForm() { $("#form-data")[0].reset(); form.render(); recordData = null; weightDto.weight = 0.0; $("#weightValue").text("0.0"); $("#img_scale_statule").attr("src", "../../static/images/icon-red.png"); //称重可以复用 $("#btn-weight").removeClass("layui-btn-disabled"); $("#btn-weight").attr("disabled", false); } function flushPage() { layer.confirm('确定要刷新页面吗?', {icon: 3, title: '提示'}, function (index) { resetForm(); layer.msg("页面重置完成,请重新操作……"); layer.close(index); }); } // --查询方法,获取身份证号、卡号、车牌号,进行查询 function flushData(intelCard, userIdCard) { var index = layer.load(); var userIdCard = userIdCard; var intelCard = intelCard; var plateNum = $("#plateNum").val(); var param = { type: type, progress: progress, intelCard: intelCard, userId: userIdCard, plateNum: plateNum }; $.ajax({ type: "POST", url: "../../basic/inout/inout-query", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(param), success: function (result) { layer.close(index); if (result.code != "0000") { notifyProgress(result.msg, result.data); } else { recordData = result.data; // 返回的数据进行赋值 form.val("form-data", recordData); form.render(); updateEditAndProgress(); } }, error: function () { layer.close(index); alertError("查询失败,请重新尝试"); } }); } /** * 根据业务数据更新页面中的状态 */ function updateEditAndProgress() { if (!recordData) return true; var curProgress = recordData.progress; //空车称重 if (InoutProgress.WEIGHT_EMPTY == curProgress) { $("#progress-hand").addClass("active"); $("#progress-emptyWeight").addClass("active"); $("#depotIdLabel").removeClass("color-red"); } //满车称重 if (InoutProgress.WEIGHT_FULL == curProgress) { $("#progress-hand").removeClass("active"); $("#progress-emptyWeight").removeClass("active"); //装卸仓库必填 $("#depotIdLabel").addClass("color-red"); } //设置可编辑 if (weightEditTag == 'Y') { $("#fullWeight").removeClass("rkbk-search-input"); $("#fullWeight").attr("disabled", false); $("#emptyWeight").removeClass("rkbk-search-input"); $("#emptyWeight").attr("disabled", false); } } // 当前完成 function submit() { if (null == recordData) { notify("没有数据可以提交", null); return; } var data = form.val("form-data"); if (!data.depotId) { notify("装卸仓库必须填写", null); return; } // 校验-入库满车称重 if (InoutProgress.WEIGHT_FULL == recordData.progress) { if (data.fullWeight <= 0.0) { notify("满车称重信息必填!!", null); return; } if (!data.customerName) { notify("客户名称必填!!", null); return; } } else { if (data.emptyWeight <= 0.0) { notify("空车称重信息必填!!", null); return; } if (!data.foodVariety) { notify("粮食品种必填!!", null); return; } if (!data.settleWeight || data.settleWeight <= 0.0) { notify("结算重量合规,请核对!!", null); return; } } // 合并更新當前编辑数据 Object.assign(recordData, data); // 获取照片 var files = [{ fileName: snapData.fileName1 }, { fileName: snapData.fileName2 }, { fileName: snapData.fileName3 }]; recordData.files = files; var index = layer.load(); $.ajax({ type: "POST", url: "../../basic/inout/inout-next-step", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(recordData), success: function (result) { if (result.code != "0000") { notify(result.msg, result.data); } else { notify("数据提交成功", result.data); } layer.close(index); }, error: function () { layer.close(index); notify("提交失败,请重新尝试", null); } }); //以下逻辑为增加一个语音通知的调用方法,不考虑返回结果--后台调用 var curWeight = recordData.fullWeight; if (InoutProgress.WEIGHT_EMPTY == recordData.progress) { curWeight = recordData.emptyWeight; } var param = { sort: $("#scaleName").val(), weight: curWeight, inoutProgress: recordData.progress, deptId: recordData.deptId, companyId: recordData.companyId, plateNum: recordData.plateNum }; $.ajax({ type: "POST", url: "../../inout/api/notice-weight-done", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(param) }); } //显示质检信息 function showCheck() { alertError("调整"); } // ---------------------------通知单-开始 -------------------// // 弹出往来单位下拉框 function showNotice() { var index = layer.load(); var param = { type: type }; // 渲染往来单位列表 table.render({ elem: '#tableNotice', url: '../../basic/inout/list-notice—in', page: false, // skin : "nob", // size : 'sm', even: true, method: 'POST', contentType: "application/json;charset=UTF-8", cols: [[{ field: 'name', title: '通知单名称', width: '15%' }, { field: 'customerName', title: '送货单位' }, { field: 'foodVarietyName', title: '粮食品种', width: '10%' }, { field: 'year', title: '年份', width: '8%' }, { field: 'unitName', title: '收货单位' }, { field: 'contractName', title: '所属合同' }]], where: param, parseData: function (res) { if ("0000" == res.code) { return { "code": "0", "msg": res.msg, "data": res.data } } else { return { "code": "1", "msg": res.msg } } }, done: function (res) { layer.close(index); } }); //双击显示选中数据 table.on('rowDouble(tableNotice)', function (obj) { var data = obj.data; form.val("form-data", { customerId: data.customerId, customerName: data.customerName, noticeId: data.id }); // 关闭 layer.closeAll(); }); // 弹出对话框 layer.open({ type: 1, offset: ['100px', '250px'], title: "入库通知单", area: ['900px', '600px'], shade: 0, content: $('#listNotice'), btn: 0, btn: ['取消'], yes: function () { layer.closeAll(); }, closeBtn: 0 }); } // ---------------------------通知单 -结束 -------------------// //-------------------------道闸操作--------------------------// function gateCtrl() { layer.open({ type: 1, title: '设备操作-' + domSelectDevice.attr("name"), area: ['450px', '210px'], shade: 0, content: $('#control-gate'), btn: 0, closeBtn: 2 }); } function controlGate(targetStatus) { if (gateDto) { var data = { "companyId": companyId , "deptId": deptId , "bizType": type , "confId": gateDto.id , "targetStatus": targetStatus , "sort": gateDto.sort }; $.ajax({ type: "POST", url: "../../basic/inout/gate-ctrl", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(data), success: function (result) { if (result.code != "0000") { layer.msg("操作失败:" + result.msg); } else { layer.msg("操作成功"); } }, error: function () { layer.alert("操作失败,请重新尝试!!"); } }); } else { layer.msg("没有获取到设备!"); } }