add.html 14.3 KB
<!DOCTYPE HTML>
<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
    <form class="form-horizontal m" id="form-shipmentPreference-add">
        <div class="form-group">
            <label class="col-sm-3 control-label">编码:</label>
            <div class="col-sm-8">
                <input id="code" name="code" 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 id="name" name="name" 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 id="onlyPicking" name="onlyPicking" class="form-control" type="text">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">出库流程:</label>
            <div class="col-sm-8">
                <select id="shippingFlow" name="shippingFlow" class="form-control" th:with="shippingFlow=${@StatusFlow.shipmentStatusFlowHeaders('shipment')}">
                    <option th:each="item : ${shippingFlow}" th:text="${item['name']}" th:value="${item['code']}"></option>
                </select>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">库存分配规则:</label>
            <div class="col-sm-8">
                <select id="allocationRule" name="allocationRule" class="form-control" th:with="allocationRule=${@filterConfigHeaderService.getFilterConfigHeaderService('shipment','allocationRule')}">
                    <option th:each="item : ${allocationRule}" th:text="${item['filterName']}" th:value="${item['filterCode']}"></option>
                </select>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">拣货规则:</label>
            <div class="col-sm-8">
                <select id="shipmentPickingRule" name="shipmentPickingRule" class="form-control" th:with="shipmentPickingRule=${@filterConfigHeaderService.getFilterConfigHeaderService('shipment','shipmentPickingRule')}">
                    <option th:each="item : ${shipmentPickingRule}" th:text="${item['filterName']}" th:value="${item['filterCode']}"></option>
                </select>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">拣货库位范围规则:</label>
            <div class="col-sm-8">
                <input id="shipmentPickingLocRange" name="shipmentPickingLocRange" class="form-control" type="text">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">自动生成托盘号:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="autoAssignLPN" name="autoAssignLPN">
                    <label class="onoffswitch-label" for="autoAssignLPN">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">允许越库:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="allowCross" name="allowCross">
                    <label class="onoffswitch-label" for="allowCross">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">允许未质检的出库:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="allowQcCheckResult" name="allowQcCheckResult">
                    <label class="onoffswitch-label" for="allowQcCheckResult">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">显示库存数量:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="showInventoryQty" name="showInventoryQty">
                    <label class="onoffswitch-label" for="showInventoryQty">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">RF组车收货:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="groupPutaway" name="groupPutaway">
                    <label class="onoffswitch-label" for="groupPutaway">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">人工组盘:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="manuallyBuildLPN" name="manuallyBuildLPN">
                    <label class="onoffswitch-label" for="manuallyBuildLPN">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">RF逐件拣货:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="checkinByPiece" name="checkinByPiece">
                    <label class="onoffswitch-label" for="checkinByPiece">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">RF快速拣货:</label>
            <div class="col-sm-8">
                <div class="onoffswitch">
                    <input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="allowQuickPickup" name="allowQuickPickup">
                    <label class="onoffswitch-label" for="allowQuickPickup">
                        <span class="onoffswitch-inner"></span>
                        <span class="onoffswitch-switch"></span>
                    </label>
                </div>
            </div>
        </div>
        <!--<div class="form-group">
            <label class="col-sm-3 control-label">数据版本:</label>
            <div class="col-sm-8">
                <input id="version" name="version" 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 id="created" name="created" 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 id="createdBy" name="createdBy" 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 id="lastUpdated" name="lastUpdated" 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 id="lastUpdatedBy" name="lastUpdatedBy" class="form-control" type="text">-->
        <!--</div>-->
        <!--</div>-->
        <!--<div class="form-group">	-->
        <!--<label class="col-sm-3 control-label">是否有效:</label>-->
        <!--<div class="col-sm-8">-->
        <!--&lt;!&ndash;<input id="enable" name="enable" class="form-control" type="text">&ndash;&gt;-->
        <!--<div class="onoffswitch">-->
        <!--<input type="checkbox" th:checked="true" class="onoffswitch-checkbox" id="enable" name="enable">-->
        <!--<label class="onoffswitch-label" for="enable">-->
        <!--<span class="onoffswitch-inner"></span>-->
        <!--<span class="onoffswitch-switch"></span>-->
        <!--</label>-->
        <!--</div>-->
        <!--</div>-->
        <!--</div>-->
        <!--<div class="form-group">	-->
        <!--<label class="col-sm-3 control-label">是否删除:</label>-->
        <!--<div class="col-sm-8">-->
        <!--<input id="deleted" name="deleted" class="form-control" type="text">-->
        <!--</div>-->
        <!--</div>-->
        <!--<div class="form-group">	-->
        <!--<label class="col-sm-3 control-label">自定义字段1:</label>-->
        <!--<div class="col-sm-8">-->
        <!--<input id="userDef1" name="userDef1" class="form-control" type="text">-->
        <!--</div>-->
        <!--</div>-->
        <!--<div class="form-group">	-->
        <!--<label class="col-sm-3 control-label">自定义字段2:</label>-->
        <!--<div class="col-sm-8">-->
        <!--<input id="userDef2" name="userDef2" class="form-control" type="text">-->
        <!--</div>-->
        <!--</div>-->
        <!--<div class="form-group">	-->
        <!--<label class="col-sm-3 control-label">自定义字段3:</label>-->
        <!--<div class="col-sm-8">-->
        <!--<input id="userDef3" name="userDef3" class="form-control" type="text">-->
        <!--</div>-->
        <!--</div>-->
        <!--<div class="form-group">	-->
        <!--<label class="col-sm-3 control-label">自定义字段4:</label>-->
        <!--<div class="col-sm-8">-->
        <!--<input id="userDef4" name="userDef4" class="form-control" type="text">-->
        <!--</div>-->
        <!--</div>-->
        <!--<div class="form-group">	-->
        <!--<label class="col-sm-3 control-label">自定义字段5:</label>-->
        <!--<div class="col-sm-8">-->
        <!--<input id="userDef5" name="userDef5" class="form-control" type="text">-->
        <!--</div>-->
        <!--</div>-->
        <div class="form-group">
            <div class="form-control-static col-sm-offset-9">
                <button type="submit" class="btn btn-primary">提交</button>
                <button onclick="$.modal.close()" class="btn btn-danger" type="button">关闭</button>
            </div>
        </div>
    </form>
</div>
<div th:include="include::footer"></div>
<script type="text/javascript">
    var prefix = ctx + "config/shipmentPreference";
    $("#form-shipmentPreference-add").validate({
        rules:{
            code:{
                required: true,
            },
            name:{
                required: true,
            },
            onlyPicking:{
                required: true,
            },
            shippingFlow:{
                required: true,
            },
            shipmentPickingRule:{
                required: true,
            },
            shipmentPickingLocRange:{
                required: true,
            },
            allocationRule: {
                required: true,
            },
            autoAssignLPN: {
                required: true,
            },
            allowCross: {
                required: true,
            },
            allowQcCheckResult: {
                required: true,
            },
            showInventoryQty: {
                required: true,
            },
            groupPickup: {
                required: true,
            },
            manuallyBuildLPN: {
                required: true,
            },
            checkinByPiece: {
                required: true,
            },
            allowQuickPickup: {
                required: true,
            }
        },
        submitHandler: function(form) {
            var tableValue = $.common.getTableValue("#form-shipmentPreference-add");
            tableValue = formValueReplace(tableValue, "autoAssignLPN", $("input[name='autoAssignLPN']").is(':checked'));
            tableValue = formValueReplace(tableValue, "allowCross", $("input[name='allowCross']").is(':checked'));
            tableValue = formValueReplace(tableValue, "allowQcCheckResult", $("input[name='allowQcCheckResult']").is(':checked'));
            tableValue = formValueReplace(tableValue, "showInventoryQty", $("input[name='showInventoryQty']").is(':checked'));
            tableValue = formValueReplace(tableValue, "groupPickup", $("input[name='groupPickup']").is(':checked'));
            tableValue = formValueReplace(tableValue, "manuallyBuildLPN", $("input[name='manuallyBuildLPN']").is(':checked'));
            tableValue = formValueReplace(tableValue, "checkinByPiece", $("input[name='checkinByPiece']").is(':checked'));
            tableValue = formValueReplace(tableValue, "allowQuickPickup", $("input[name='allowQuickPickup']").is(':checked'));
            $.operate.save(prefix + "/add", tableValue);
        }
    });
</script>
</body>
</html>