|
@ -3,194 +3,115 @@ |
|
|
<head> |
|
|
<head> |
|
|
<th:block th:include="include :: header('采购入库单详情')" /> |
|
|
<th:block th:include="include :: header('采购入库单详情')" /> |
|
|
<th:block th:include="include :: datetimepicker-css" /> |
|
|
<th:block th:include="include :: datetimepicker-css" /> |
|
|
<style> |
|
|
|
|
|
|
|
|
|
|
|
.supplier-value span { |
|
|
|
|
|
margin-right: 10px; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
</style> |
|
|
|
|
|
</head> |
|
|
</head> |
|
|
<body class="white-bg"> |
|
|
<body class="white-bg"> |
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
|
|
<form class="form-horizontal m" id="form-purchaseStorage-detail" th:object="${warehouseStorageOrder}"> |
|
|
<form class="form-horizontal m" id="form-purchaseStorage-detail" th:object="${purchaseStorage}"> |
|
|
<input name="warehouseStorageId" th:field="*{warehouseStorageId}" type="hidden"> |
|
|
<input type="hidden" name="purchaseStorageId" th:field="*{purchaseStorageId}"/> |
|
|
|
|
|
<div class="form-group"> |
|
|
|
|
|
<label class="col-sm-3 control-label">入库单号:</label> |
|
|
|
|
|
<div class="col-sm-8"> |
|
|
|
|
|
<input name="warehouseStorageCode" th:field="*{warehouseStorageCode}" class="form-control" type="text" readonly> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
<div class="form-group"> |
|
|
<div class="form-group"> |
|
|
<label class="col-sm-4 control-label">采购单号:</label> |
|
|
<label class="col-sm-3 control-label ">供应商ID:</label> |
|
|
<div class="col-sm-8"> |
|
|
<div class="col-sm-8"> |
|
|
<input name="relatedOrderCode" th:field="*{relatedOrderCode}" class="form-control" type="text" readonly> |
|
|
<input name="supplierCode" th:field="*{supplierCode}" class="form-control" type="text" readonly> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="form-group"> |
|
|
<div class="form-group"> |
|
|
<label class="col-sm-4 control-label">入库类型:</label> |
|
|
<label class="col-sm-3 control-label is-required">供应商名称:</label> |
|
|
<div class="col-sm-8"> |
|
|
<div class="col-sm-8"> |
|
|
<select name="warehouseStorageType" class="form-control m-b" th:with="type=${@dict.getType('warehouse_storage_type')}" disabled> |
|
|
<input name="supplierName" th:field="*{supplierName}" class="form-control" type="text" required readonly> |
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{warehouseStorageType}"></option> |
|
|
|
|
|
</select> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group"> |
|
|
<div class="form-group"> |
|
|
<label class="col-sm-4 control-label">到货时间:</label> |
|
|
<label class="col-sm-3 control-label">到货时间:</label> |
|
|
<div class="col-sm-8"> |
|
|
<div class="col-sm-8"> |
|
|
<div class="input-group date"> |
|
|
<div class="input-group date"> |
|
|
<input name="arrivedTime" th:value="${#dates.format(warehouseStorageOrder.arrivedTime, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text" readonly disabled> |
|
|
<input name="arrivedTime" class="form-control" placeholder="yyyy-MM-dd" type="text" readonly> |
|
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span> |
|
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</form> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--物料信息--> |
|
|
<div class="container"> |
|
|
<div class="container"> |
|
|
<!--供应商物料相关--> |
|
|
|
|
|
<div class="row"> |
|
|
<div class="row"> |
|
|
<div class="col-sm-12" id="tablesContainer"> |
|
|
<div class="col-sm-12 select-table table-striped"> |
|
|
<!-- 表格将在这里动态生成 --> |
|
|
<table id="bootstrap-table"></table> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</form> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
<th:block th:include="include :: footer" /> |
|
|
<th:block th:include="include :: footer" /> |
|
|
<th:block th:include="include :: datetimepicker-js" /> |
|
|
<th:block th:include="include :: datetimepicker-js" /> |
|
|
<th:block th:include="include :: bootstrap-table-editable-js" /> |
|
|
|
|
|
<script th:inline="javascript"> |
|
|
<script th:inline="javascript"> |
|
|
|
|
|
var prefix = ctx + "purchase/purchaseStorage"; |
|
|
|
|
|
|
|
|
var warehouseStorageCode = [[${warehouseStorageOrder.warehouseStorageCode}]]; |
|
|
|
|
|
var warehouseCode = [[${warehouseStorageOrder.warehouseCode}]]; |
|
|
|
|
|
var processMethodDatas = [[${@dict.getType('processMethod')}]]; |
|
|
var processMethodDatas = [[${@dict.getType('processMethod')}]]; |
|
|
|
|
|
var materialUnitDatas = [[${@dict.getType('sys_unit_class')}]]; |
|
|
var materialTypeDatas = [[${@category.getChildByCode('materialType')}]]; |
|
|
var materialTypeDatas = [[${@category.getChildByCode('materialType')}]]; |
|
|
var warehouseDeptDatas = [[${@dict.getType('warehouseDept')}]]; |
|
|
var warehouseDeptDatas = [[${@dict.getType('warehouseDept')}]]; |
|
|
var prefix = ctx + "purchase/purchaseStorage"; |
|
|
var purchaseStorage = [[${purchaseStorage}]]; |
|
|
$("#form-purchaseStorage-detail").validate({ |
|
|
$("#form-purchaseStorage-detail").validate({ focusCleanup: true}); |
|
|
focusCleanup: true |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
//生成的不同table的id集合 |
|
|
|
|
|
var tableDatas = []; |
|
|
|
|
|
|
|
|
|
|
|
function submitHandler() { |
|
|
function submitHandler() { |
|
|
const storageOrderData = $("#form-purchaseStorage-detail").serializeArray().reduce((obj, item) => { |
|
|
if ($.validate.form()) { |
|
|
obj[item.name] = item.value; |
|
|
$.operate.save(prefix + "/detail", $('#form-purchaseStorage-detail').serialize()); |
|
|
return obj; |
|
|
|
|
|
}, {}); |
|
|
|
|
|
// 初始化一个数组用于存放所有表格的数据 |
|
|
|
|
|
let allMaterialDataList = []; |
|
|
|
|
|
for(let i in tableDatas){ |
|
|
|
|
|
$('#' + tableDatas[i]).each(function() { |
|
|
|
|
|
const tableData = $(this).bootstrapTable('getData'); |
|
|
|
|
|
console.log(JSON.stringify(tableData)); |
|
|
|
|
|
// 将表数据转换成与qualityReportData格式一致的数组 |
|
|
|
|
|
var materialDataList = tableData.map(function (item) { |
|
|
|
|
|
// 根据实际字段名调整 |
|
|
|
|
|
return { |
|
|
|
|
|
"supplierCode": item.supplierCode, |
|
|
|
|
|
"materialNo": item.materialNo, |
|
|
|
|
|
"materialName": item.materialName, |
|
|
|
|
|
"materialType": item.materialType, |
|
|
|
|
|
"materialPhotourl": item.materialPhotourl, |
|
|
|
|
|
"materialDescribe": item.materialDescribe, |
|
|
|
|
|
"materialBrand": item.materialBrand, |
|
|
|
|
|
"materialUnit": item.materialUnit, |
|
|
|
|
|
"materialProcessMethod": item.materialProcessMethod, |
|
|
|
|
|
"notifyHasArrivedNum": item.notifyHasArrivedNum, |
|
|
|
|
|
"actualHasArrivedNum": item.actualHasArrivedNum, |
|
|
|
|
|
"temporaryHasQualifiedNum": item.temporaryHasQualifiedNum, |
|
|
|
|
|
"hasStorageNum": item.hasStorageNum, |
|
|
|
|
|
"notifyArriveNum": item.notifyArriveNum, |
|
|
|
|
|
"actualArriveNum": item.actualArriveNum, |
|
|
|
|
|
"temporaryQualifiedNum": item.temporaryQualifiedNum, |
|
|
|
|
|
"temporaryRemark": item.temporaryRemark, |
|
|
|
|
|
"temporaryReportUrl": item.temporaryReportUrl, |
|
|
|
|
|
"storageNum": item.storageNum, |
|
|
|
|
|
"storageLocation": item.storageLocation, |
|
|
|
|
|
|
|
|
|
|
|
// ...其他字段 |
|
|
|
|
|
}; |
|
|
|
|
|
}); |
|
|
|
|
|
allMaterialDataList = allMaterialDataList.concat(materialDataList); |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const combinedData = Object.assign({}, storageOrderData, { |
|
|
|
|
|
warehouseStorageOrderDetailList: allMaterialDataList |
|
|
|
|
|
}); |
|
|
|
|
|
// 合并表单数据和表格数据 |
|
|
|
|
|
// const combinedData = Object.assign({}, ...complaintNoticeData.array(item => ({ [item.name]: item.value })), ...materialData); |
|
|
|
|
|
console.log(combinedData) |
|
|
|
|
|
// 使用 JSON.stringify() 序列化数据 |
|
|
|
|
|
const jsonData = JSON.stringify(combinedData); |
|
|
|
|
|
// 发送 AJAX 请求到后端接口 |
|
|
|
|
|
$.operate.saveJson(prefix + "/detail", jsonData); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
$("input[name='arrivedTime']").datetimepicker({ |
|
|
|
|
|
format: "yyyy-mm-dd", |
|
|
|
|
|
minView: "month", |
|
|
|
|
|
autoclose: true |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
$("input[name='deliveryInspectionTime']").datetimepicker({ |
|
|
|
|
|
format: "yyyy-mm-dd", |
|
|
|
|
|
minView: "month", |
|
|
|
|
|
autoclose: true |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//物料信息展示列表 |
|
|
$(function() { |
|
|
$(function() { |
|
|
// 假设qualityOrderCode已经定义或者可以通过某种方式获取到 |
|
|
var options = { |
|
|
var warehouseStorageCode = [[${warehouseStorageOrder.warehouseStorageCode}]]; // 这里需要实际赋值,比如从前端某个地方读取 |
|
|
modalName: "选择物料", |
|
|
|
|
|
url: prefix + "/selectStorageChildMaterialList", |
|
|
$.getJSON(prefix + "/storagePurchaseDetailList?warehouseStorageCode=" + warehouseStorageCode, function(data) { |
|
|
queryParams: queryParams, |
|
|
for (var supplierCode in data) { |
|
|
showSearch: false, |
|
|
if (data.hasOwnProperty(supplierCode)) { |
|
|
showRefresh: false, |
|
|
var supplierData = data[supplierCode]; |
|
|
showToggle: false, |
|
|
createTableForSupplier(supplierCode, supplierData); |
|
|
showColumns: false, |
|
|
} |
|
|
pagination: false, // 设置不分页 |
|
|
} |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
function createTableForSupplier(supplierCode, supplierData) { |
|
|
|
|
|
var tableId = 'bootstrap-table-' + supplierCode.replace(/[^a-z0-9]/gi, '_').toLowerCase(); |
|
|
|
|
|
tableDatas.push(tableId); |
|
|
|
|
|
var $tableWrapper = $('<div class="table-responsive mt-3"></div>'); |
|
|
|
|
|
|
|
|
|
|
|
// 确保supplierData至少有一条记录,并从中提取供应商详细信息 |
|
|
|
|
|
var supplierInfo = supplierData.length > 0 ? supplierData[0] : {}; // 默认为空对象,以防数据不存在 |
|
|
|
|
|
|
|
|
|
|
|
// 构建含有额外供应商信息的标题字符串 |
|
|
|
|
|
var headerTitle ='供应商'+'</br>'+supplierCode + ' - ' + (supplierInfo.supplierName || 'N/A'); |
|
|
|
|
|
|
|
|
|
|
|
var $header = $('<h4>' + headerTitle + '</h4>'); |
|
|
|
|
|
var $table = $('<table id="' + tableId + '" class="table table-striped table-bordered"></table>'); |
|
|
|
|
|
|
|
|
|
|
|
$table.bootstrapTable({ |
|
|
|
|
|
data: supplierData, |
|
|
|
|
|
columns: [{ |
|
|
columns: [{ |
|
|
checkbox: true |
|
|
checkbox: true |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '供应商ID', |
|
|
title: '采购入库单子表id', |
|
|
field: 'supplierCode', |
|
|
field: 'purchaseStorageChildId', |
|
|
visible: false |
|
|
visible: false |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '料号', |
|
|
title: '料号', |
|
|
field: 'materialNo' |
|
|
field: 'materialNo', |
|
|
}, { |
|
|
|
|
|
title: '物料名称', |
|
|
|
|
|
field: 'materialName' |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '物料类型', |
|
|
title: '物料名称', |
|
|
field: 'materialType', |
|
|
field: 'materialName', |
|
|
formatter: function (value, row, index) { |
|
|
|
|
|
return $.table.selectDictLabel(materialTypeDatas, value); |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '物料图片地址', |
|
|
title: '物料图片地址', |
|
|
field: 'materialPhotourl', |
|
|
field: 'materialPhotourl', |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '物料描述', |
|
|
title: '物料型号', |
|
|
field: 'materialDescribe', |
|
|
field: 'materialModel', |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
title: '物料类型', |
|
|
|
|
|
field: 'materialType', |
|
|
|
|
|
formatter: function(value, row, index) { |
|
|
|
|
|
return $.table.selectCategoryLabel(materialTypeDatas, value); |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '物料品牌', |
|
|
title: '物料品牌', |
|
@ -199,100 +120,55 @@ |
|
|
{ |
|
|
{ |
|
|
title: '物料单位', |
|
|
title: '物料单位', |
|
|
field: 'materialUnit', |
|
|
field: 'materialUnit', |
|
|
|
|
|
formatter:function (value) { |
|
|
|
|
|
return $.table.selectDictLabel(materialUnitDatas, value); |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
title: '物料描述', |
|
|
|
|
|
field: 'materialDescribe', |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '物料加工方式', |
|
|
title: '物料加工方式', |
|
|
field: 'materialProcessMethod', |
|
|
field: 'materialProcessMethod', |
|
|
formatter: function (value, row, index) { |
|
|
formatter:function (value) { |
|
|
return $.table.selectDictLabel(processMethodDatas, value); |
|
|
return $.table.selectDictLabel(processMethodDatas, value); |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
{ |
|
|
{ |
|
|
title: '通知已到货数', |
|
|
title: '物料入库部门', |
|
|
field: 'notifyHasArrivedNum', |
|
|
field: 'materialDeptType', |
|
|
|
|
|
formatter:function (value) { |
|
|
|
|
|
return $.table.selectDictLabel(warehouseDeptDatas, value); |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '已入库数', |
|
|
title: '通知已到货数量', |
|
|
field: 'hasStorageNum', |
|
|
field: 'notifyHasArrivedNum', |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '通知到货数', |
|
|
title: '实际到货数量', |
|
|
field: 'notifyArriveNum', |
|
|
field: 'actualArriveNum', |
|
|
}, |
|
|
}, |
|
|
] |
|
|
] |
|
|
}); |
|
|
}; |
|
|
|
|
|
$.table.init(options); |
|
|
$tableWrapper.append($header).append($table); |
|
|
}) |
|
|
$('#tablesContainer').append($tableWrapper); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//根据仓库ID查询仓库名称 |
|
|
|
|
|
$(document).ready(function() { |
|
|
|
|
|
// 初始化时默认加载仓库ID列表 |
|
|
|
|
|
loadWarehouseCodes(); |
|
|
|
|
|
|
|
|
|
|
|
// 监听仓库ID下拉框的变化 |
|
|
function queryParams(params) { |
|
|
$('#warehouseCode').on('change', function() { |
|
|
var curParams = { |
|
|
var selectedWarehouseCode = $(this).val(); // 获取选中的仓库ID |
|
|
// 传递参数查询参数 |
|
|
if (selectedWarehouseCode) { |
|
|
warehouseStorageCode: purchaseStorage.warehouseStorageCode |
|
|
// 发起Ajax请求获取仓库名称 |
|
|
}; |
|
|
$.ajax({ |
|
|
return curParams; |
|
|
type: 'GET', |
|
|
|
|
|
url: ctx +'stock/stockInfo/getStockNameByWarehouseCode/' + selectedWarehouseCode, |
|
|
|
|
|
dataType: 'json', // 假设返回的数据格式是JSON |
|
|
|
|
|
success: function(data) { |
|
|
|
|
|
console.log(data); |
|
|
|
|
|
// 将获取到的仓库名称填充到输入框 |
|
|
|
|
|
if(data.data == null){ |
|
|
|
|
|
// 如果返回的数据有问题,可以给出提示或处理 |
|
|
|
|
|
$.modal.alertWarning('未能获取到仓库名称!'); |
|
|
|
|
|
} |
|
|
|
|
|
$('input[name="warehouseName"]').val(data.data.stockname); |
|
|
|
|
|
}, |
|
|
|
|
|
error: function(jqXHR, textStatus, errorThrown) { |
|
|
|
|
|
console.error('Error:', textStatus, errorThrown); |
|
|
|
|
|
$.modal.alertWarning('查询仓库名称时发生错误!'); |
|
|
|
|
|
} |
|
|
|
|
|
}); |
|
|
|
|
|
} else { |
|
|
|
|
|
// 如果没有选择仓库ID,清空仓库名称输入框 |
|
|
|
|
|
$('input[name="warehouseName"]').val(''); |
|
|
|
|
|
} |
|
|
} |
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 加载仓库Id列表函数 |
|
|
|
|
|
function loadWarehouseCodes() { |
|
|
|
|
|
var url = ctx + 'stock/stockInfo/getAllWarehouseCode'; |
|
|
|
|
|
$.ajax({ |
|
|
|
|
|
type: 'GET', // 请求类型 |
|
|
|
|
|
url: url, // 后端接口URL |
|
|
|
|
|
dataType: 'json', // 预期服务器返回的数据类型 |
|
|
|
|
|
success: function(data) { |
|
|
|
|
|
if (data && Array.isArray(data)) { |
|
|
|
|
|
var selectElement = $('#warehouseCode'); // 获取仓库编号下拉框元素 |
|
|
|
|
|
// 清空下拉框现有选项 |
|
|
|
|
|
selectElement.empty(); |
|
|
|
|
|
|
|
|
|
|
|
// 添加默认选项(如果需要)编辑时不需要添加默认选项 |
|
|
|
|
|
// selectElement.append('<option value="">所有</option>'); |
|
|
|
|
|
|
|
|
|
|
|
// 遍历返回的数据,添加为下拉框的选项 |
|
|
$("input[name='arrivedTime']").datetimepicker({ |
|
|
$.each(data, function(index, item) { |
|
|
format: "yyyy-mm-dd", |
|
|
// 仓库ID |
|
|
minView: "month", |
|
|
selectElement.append('<option value="' + item.stockNO + '">' + item.stockNO + '</option>'); |
|
|
autoclose: true, |
|
|
}); |
|
|
}).datetimepicker("update", new Date());; |
|
|
// $('#warehouseCode').val(stockNO); |
|
|
|
|
|
} else { |
|
|
|
|
|
$.modal.errMsg("数据为空"); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
</script> |
|
|
</body> |
|
|
</body> |
|
|