|
|
|
|
@ -2,11 +2,13 @@
|
|
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
|
|
|
<head>
|
|
|
|
|
<th:block th:include="include :: header('修改BOM基础信息')" />
|
|
|
|
|
<th:block th:include="include :: jasny-bootstrap-css" />
|
|
|
|
|
<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-bominfo-edit" th:object="${baseBomInfo}">
|
|
|
|
|
<input name="objid" th:field="*{objid}" type="hidden">
|
|
|
|
|
<input name="bomId" th:field="*{bomId}" type="hidden">
|
|
|
|
|
<!-- <div class="form-group"> -->
|
|
|
|
|
<!-- <label class="col-sm-3 control-label">父节点ID:</label>-->
|
|
|
|
|
<!-- <div class="col-sm-8">-->
|
|
|
|
|
@ -14,21 +16,27 @@
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">物料类型ID:</label>
|
|
|
|
|
<label class="col-sm-3 control-label">物料类型名称:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="materialTypeId" class="form-control m-b">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<select name="materialTypeId" th:id="materialTypeId" class="form-control m-b">
|
|
|
|
|
<option name="cbmaterialtypeInfo" th:each="materialTypeId:${cbmaterialtypeInfo}" th:value="${materialTypeId.materialTypeId}" th:text="${materialTypeId.materialTypeName}" th:selected="${materialTypeId.flag}" th:disabled="${materialTypeId.status == '1'}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">物料ID:</label>
|
|
|
|
|
<label class="col-sm-3 control-label">物料名称:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="materialId" class="form-control m-b">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<select name="materialId" th:id="materialId" class="form-control m-b">
|
|
|
|
|
<option name="cbmaterialInfo" th:each="materialId:${cbmaterialInfo}" th:value="${materialId.materialId}" th:text="${materialId.materialName}" th:selected="${materialId.flag}" th:disabled="${materialId.status == '1'}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">备注:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="remark" th:field="*{remark}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">状态标志:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
@ -41,6 +49,8 @@
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<th:block th:include="include :: footer" />
|
|
|
|
|
<th:block th:include="include :: datetimepicker-js" />
|
|
|
|
|
<th:block th:include="include :: jasny-bootstrap-js" />
|
|
|
|
|
<script th:inline="javascript">
|
|
|
|
|
var prefix = ctx + "baseinfo/bominfo";
|
|
|
|
|
$("#form-bominfo-edit").validate({
|
|
|
|
|
|