/**
|
* 详情对话框
|
*/
|
var SalesOrderInfoDlg = {
|
data: {
|
id: "",
|
salesOrderCode: "",
|
customerNo: "",
|
cargoNo: "",
|
productCode: "",
|
productName: "",
|
planNumber: "",
|
planStartTime: "",
|
planEndTime: "",
|
workshopCode: "",
|
lineCode: "",
|
deliveryTime: "",
|
state: "",
|
orderSource: "",
|
spareField1: "",
|
spareField2: "",
|
spareField3: "",
|
createUser: "",
|
createTime: "",
|
updateUser: "",
|
updateTime: "",
|
remark: ""
|
}
|
};
|
|
layui.use(['form', 'admin', 'ax','laydate','upload','formSelects'], function () {
|
var $ = layui.jquery;
|
var $ax = layui.ax;
|
var form = layui.form;
|
var admin = layui.admin;
|
var laydate = layui.laydate;
|
|
//初始化时间选择器
|
laydate.render({
|
elem: '#planStartTime',
|
type: 'datetime'
|
});
|
//初始化时间选择器
|
laydate.render({
|
elem: '#planEndTime',
|
type: 'datetime'
|
});
|
//初始化时间选择器
|
laydate.render({
|
elem: '#deliveryTime',
|
type: 'datetime'
|
});
|
|
//获取详情信息,填充表单
|
var ajax = new $ax(Feng.ctxPath + "/salesOrder/detail?id=" + Feng.getUrlParam("id"));
|
var result1 = ajax.start();
|
form.val('salesOrderForm', result1.data);
|
|
let workshopCode = result1.data.workshopCode;
|
let lineCode = result1.data.lineCode;
|
|
$(document).ready(function () {
|
// $.ajax({
|
// type: "POST",
|
// contentType: "application/json;charset=UTF-8",
|
// url: Feng.ctxPath + '/workshopInfo/list',
|
// success: function (result) {
|
// $.each(result.data, function (index, value) {
|
// $('#workshopCode').append(new Option(value.workshopCode));// 下拉菜单里添加元素
|
// });
|
// $('#workshopCode').val(workshopCode);
|
// layui.form.render("select");//重新渲染 固定写法
|
// },
|
// });
|
|
// $.ajax({
|
// type: "POST",
|
// contentType: "application/json;charset=UTF-8",
|
// url: Feng.ctxPath + '/lineInfo/list?workshopCode='+workshopCode,
|
// success: function (result) {
|
// $('#productionLineCode').empty();
|
// $.each(result.data, function (index, value) {
|
// $('#lineCode').append(new Option(value.lineCode));// 下拉菜单里添加元素
|
// });
|
// $('#lineCode').val(lineCode);
|
// layui.form.render("select");//重新渲染 固定写法
|
// },
|
// });
|
$.ajax({
|
type: "POST",
|
contentType: "application/json;charset=UTF-8",
|
url: Feng.ctxPath + '/lineInfo/list',
|
success: function (result) {
|
$.each(result.data, function (index, value) {
|
$('#lineCode').append(new Option(value.lineCode));// 下拉菜单里添加元素
|
});
|
$('#lineCode').val(lineCode);
|
layui.form.render("select");//重新渲染 固定写法
|
},
|
});
|
});
|
|
// form.on("select", function (data) {
|
// switch(data.elem.id){
|
// case 'workshopCode':
|
// $.ajax({
|
// type: "POST",
|
// contentType: "application/json;charset=UTF-8",
|
// url: Feng.ctxPath + '/lineInfo/list?workshopCode='+workshopCode,
|
// success: function (result) {
|
// $('#lineCode').empty();
|
// $.each(result.data, function (index, value) {
|
// $('#lineCode').append(new Option(value.lineCode));// 下拉菜单里添加元素
|
// });
|
// if($('#workshopCode').val() === ""||$('#workshopCode').val() === null){
|
// layui.$('#lineCode').empty(); // 获取select元素
|
// }
|
// layui.form.render("select");//重新渲染 固定写法
|
// },
|
// });
|
// break;
|
// }
|
// });
|
|
//表单提交事件
|
form.on('submit(btnSubmit)', function (data) {
|
var ajax = new $ax(Feng.ctxPath + "/salesOrder/editItem", function (data) {
|
Feng.success("更新成功!");
|
window.location.href = Feng.ctxPath + '/salesOrder'
|
}, function (data) {
|
Feng.error("更新失败!" + data.responseJSON.message)
|
});
|
ajax.set(data.field);
|
ajax.start();
|
|
return false;
|
});
|
|
$('#cancel').click(function(){
|
window.location.href = Feng.ctxPath + '/salesOrder'
|
});
|
});
|