万材erp项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

155 lines
6.7 KiB

<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
<th:block th:include="include :: header('修改采购入库通知查询')"/>
<th:block th:include="include :: datetimepicker-css"/>
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-pucharseNotice-detail" th:object="${warehousingPurchaseNotice}">
<input name="warehousingpurchasenoticeNo" th:field="*{warehousingpurchasenoticeNo}" type="hidden">
<div class="form-group">
<label class="col-sm-3 control-label">入库通知单号:</label>
<div class="col-sm-8">
<input readonly name="warehousingpurchasenoticeNo" th:field="*{warehousingpurchasenoticeNo}"
class="form-control"
type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">客户ID:</label>
<div class="col-sm-8">
<input readonly name="customerId" th:field="*{customerId}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">客户名称:</label>
<div class="col-sm-8">
<input readonly name="customerName" th:field="*{customerName}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">入库类型:</label>
<div class="col-sm-8">
<input readonly name="warehousingType" th:field="*{warehousingType}" class="form-control" type="text">
<!-- -->
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">入库通知日期:</label>
<div class="col-sm-8">
<input readonly name="warehousingnoticeDate" th:field="*{warehousingnoticeDate}" class="form-control"
type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">采购单号:</label>
<div class="col-sm-8">
<input readonly name="purchaseorderNo" th:field="*{purchaseorderNo}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">内/外销:</label>
<div class="col-sm-8">
<input readonly name="domesticOrExport" th:field="*{domesticOrExport}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">仓库号:</label>
<div class="col-sm-8">
<input readonly name="warehouseNo" th:field="*{warehouseNo}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">仓库名称:</label>
<div class="col-sm-8">
<input readonly name="warehouseName" th:field="*{warehouseName}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">项次:</label>
<div class="col-sm-8">
<input readonly name="itemTimes" th:field="*{itemTimes}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">物料代码:</label>
<div class="col-sm-8">
<input readonly name="itemNo" th:field="*{itemNo}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">采购物料名称:</label>
<div class="col-sm-8">
<input readonly name="itemName" th:field="*{itemName}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">规格型号:</label>
<div class="col-sm-8">
<input readonly name="specificationModel" th:field="*{specificationModel}" class="form-control"
type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">机种:</label>
<div class="col-sm-8">
<input readonly name="machineType" th:field="*{machineType}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">单位:</label>
<div class="col-sm-8">
<input readonly name="unit" th:field="*{unit}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">此次通知入库数量:</label>
<div class="col-sm-8">
<input readonly name="warehousingAmt" th:field="*{warehousingAmt}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">订单订购总数量:</label>
<div class="col-sm-8">
<input readonly name="purchaseorderAmt" th:field="*{purchaseorderAmt}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label"></label>
<div class="col-sm-8">
<input readonly name="spell1" th:field="*{spell1}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label"></label>
<div class="col-sm-8">
<input readonly name="spell2" th:field="*{spell2}" class="form-control" type="text">
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer"/>
<th:block th:include="include :: datetimepicker-js"/>
<script th:inline="javascript">
var prefix = ctx + "stock/warehousingPucharseNotice";
$("#form-pucharseNotice-detail").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/detail", $('#form-pucharseNotice-detail').serialize());
}
}
$("input[name='warehousingnoticeDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
</script>
</body>
</html>