|
|
<!DOCTYPE html>
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
|
<head>
|
|
|
<th:block th:include="include :: header('修改BOM基础信息')" />
|
|
|
</head>
|
|
|
<body class="white-bg">
|
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
|
<form class="form-horizontal m" id="form-bominfo-edit" th:object="${baseBomInfo}">
|
|
|
<input name="objid" th:field="*{objid}" type="hidden">
|
|
|
<!-- <div class="form-group"> -->
|
|
|
<!-- <label class="col-sm-3 control-label">父节点ID:</label>-->
|
|
|
<!-- <div class="col-sm-8">-->
|
|
|
<!-- <input name="pId" th:field="*{pId}" 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">
|
|
|
<select name="materialTypeId" class="form-control m-b">
|
|
|
<option value="">所有</option>
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-group">
|
|
|
<label class="col-sm-3 control-label">物料ID:</label>
|
|
|
<div class="col-sm-8">
|
|
|
<select name="materialId" class="form-control m-b">
|
|
|
<option value="">所有</option>
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-group">
|
|
|
<label class="col-sm-3 control-label">状态标志:</label>
|
|
|
<div class="col-sm-8">
|
|
|
<div class="radio-box" th:each="dict : ${@dict.getType('sys_status_info')}">
|
|
|
<input type="radio" th:id="${'status_' + dict.dictCode}" name="status" th:value="${dict.dictValue}" th:field="*{status}">
|
|
|
<label th:for="${'status_' + dict.dictCode}" th:text="${dict.dictLabel}"></label>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</form>
|
|
|
</div>
|
|
|
<th:block th:include="include :: footer" />
|
|
|
<script th:inline="javascript">
|
|
|
var prefix = ctx + "baseinfo/bominfo";
|
|
|
$("#form-bominfo-edit").validate({
|
|
|
focusCleanup: true
|
|
|
});
|
|
|
|
|
|
function submitHandler() {
|
|
|
if ($.validate.form()) {
|
|
|
$.operate.save(prefix + "/edit", $('#form-bominfo-edit').serialize());
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
</body>
|
|
|
</html> |