自动化立体仓库 - WMS系统
skyouc
2 天以前 22e544b28e3fae353f3a257dec4080c17e015a54
no message
9个文件已修改
44 ■■■■ 已修改文件
src/main/java/com/zy/asrs/controller/LocAroundBindController.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/LocAroundBind.java 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/param/InitDeviceLocParams.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/service/impl/WorkServiceImpl.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/locAroundBind/locAroundBind.js 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/orderPakout/order.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/orderPakout/out.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/locAroundBind/locAroundBind.html 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/orderPakout/out.html 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/controller/LocAroundBindController.java
@@ -126,7 +126,7 @@
    }
    /**
     * 台机绑定作业库位
     * 机台绑定作业库位
     *
     * @param
     * @return
@@ -138,7 +138,7 @@
            return R.error("参数不能为空");
        }
        if (Cools.isEmpty(params.getDevNo())) {
            return R.error("台机号不能为空");
            return R.error("机台号不能为空");
        }
        if (Cools.isEmpty(params.getStartRow())) {
            return R.error("起始排不能为空");
src/main/java/com/zy/asrs/entity/LocAroundBind.java
@@ -20,16 +20,16 @@
    private Long id;
    /**
     * 台机ID
     * 机台ID
     */
    @ApiModelProperty(value= "台机ID")
    @ApiModelProperty(value= "机台ID")
    @TableField("dev_id")
    private Long devId;
    /**
     * 台机号
     * 机台号
     */
    @ApiModelProperty(value= "台机号")
    @ApiModelProperty(value= "机台号")
    @TableField("dev_no")
    private String devNo;
@@ -57,8 +57,8 @@
    }
//    LocAroundBind locAroundBind = new LocAroundBind(
//            null,    // 台机ID[非空]
//            null,    // 台机号[非空]
//            null,    // 机台ID[非空]
//            null,    // 机台号[非空]
//            null,    // 库位ID[非空]
//            null    // 库位码[非空]
//    );
src/main/java/com/zy/asrs/entity/param/InitDeviceLocParams.java
@@ -7,13 +7,13 @@
import io.swagger.annotations.ApiModel;
@Data
@ApiModel(value = "InitDeviceLocParams", description = "初始化台机库位参数")
@ApiModel(value = "InitDeviceLocParams", description = "初始化机台库位参数")
@Accessors(chain = true)
public class InitDeviceLocParams implements Serializable {
    private static final long serialVersionUID = 1L;
    // 台机号
    // 机台号
    private String devNo;
    // 起始排
src/main/java/com/zy/asrs/service/impl/WorkServiceImpl.java
@@ -1476,7 +1476,7 @@
        }
        List<LocAroundBind> binds = locAroundBindService.selectList(new EntityWrapper<LocAroundBind>().eq("dev_no", basDevice.getDevNo()));
        if (Objects.isNull(binds) || binds.isEmpty()) {
            throw new CoolException("台机未绑定工作站台!!");
            throw new CoolException("机台未绑定工作站台!!");
        }
        Set<String> locs = binds.stream().map(LocAroundBind::getBLocNo).collect(Collectors.toSet());
src/main/webapp/static/js/locAroundBind/locAroundBind.js
@@ -23,8 +23,8 @@
        cols: [[
            { type: 'checkbox' }
            , { field: 'id', align: 'center', title: 'ID' }
            , { field: 'devId', align: 'center', title: '台机ID' }
            , { field: 'devNo', align: 'center', title: '台机号' }
            , { field: 'devId', align: 'center', title: '机台ID' }
            , { field: 'devNo', align: 'center', title: '机台号' }
            , { field: 'blocId', align: 'center', title: '库位ID', hide: true }
            , { field: 'blocNo', align: 'center', title: '库位码' }
            , { fixed: 'right', title: '操作', align: 'center', toolbar: '#operate', width: 120 }
@@ -127,7 +127,7 @@
                        if (res.data) {
                            layer.open({
                                type: 1,
                                title: '台机绑定作业库位',
                                title: '机台绑定作业库位',
                                area: ["400px"],
                                maxmin: true,
                                shadeClose: true,
src/main/webapp/static/js/orderPakout/order.js
@@ -125,7 +125,7 @@
                            {field: 'matnr', title: '商品编码', width: 160},
                            {field: 'maktx', title: '商品名称', width: 160},
                            {field: 'batch', title: '批号'},
                            {field: 'standby1', title: '台机'},
                            {field: 'standby1', title: '机台'},
                            {field: 'anfme', title: '数量'},
                            {field: 'workQty', title: '作业数量'},
                            {field: 'qty', title: '完成数量', style: 'font-weight: bold'},
@@ -239,7 +239,7 @@
                        {field: 'maktx', title: '商品名称', width: 200},
                        {field: 'batch', title: '批号', edit: true},
                        {field: 'specs', title: '规格'},
                        {field: 'standby1', title: '台机', edit: true},
                        {field: 'standby1', title: '机台', edit: true},
                        {field: 'anfme', title: '数量(修改)', style: 'color: blue;font-weight: bold', edit: true, minWidth: 110, width: 110},
                        {field: 'workQty', title: '作业数量',  minWidth: 100, width: 100},
                        // {field: 'unit', title: '单位', width: 80},
src/main/webapp/static/js/orderPakout/out.js
@@ -34,7 +34,7 @@
            ,{field: 'orderNo', align: 'center',title: '单据编号', templet: '#orderNoTpl', width: 160}
            ,{field: 'matnr', align: 'center',title: '商品编码', width: 160}
            ,{field: 'maktx', align: 'center',title: '商品名称', width: 200}
            ,{field: 'standby1', align: 'center',title: '台机号'}
            ,{field: 'standby1', align: 'center',title: '机台号'}
            ,{field: 'specs', align: 'center',title: '规格'}
            // ,{field: 'anfme', align: 'center',title: '数量'}
            // ,{field: 'qty', align: 'center',title: '作业数量', style: 'font-weight: bold'}
@@ -159,7 +159,7 @@
                                    // {type: 'checkbox', merge: ['orderNo']},
                                    {field: 'orderNo', title: '单据编号', merge: true, align: 'center'},
                                    {field: 'title', title: '商品', merge: true, align: 'center', width: 350},
                                    {field: 'standby1', title: '台机号', align: 'center'},
                                    {field: 'standby1', title: '机台号', align: 'center'},
                                    {field: 'anfme', title: '数量', align: 'center', width: 90, style: 'font-weight: bold'},
                                    {field: 'locNo', title: '货位', align: 'center', width: 100, templet: '#locNoTpl'},
                                    {field: 'frozen$', title: '明细', align: 'center', width: 90, templet: '#locFrozen'},
src/main/webapp/views/locAroundBind/locAroundBind.html
@@ -68,7 +68,7 @@
                <div class="layui-form-item">
                    <label class="layui-form-label layui-form-required">机台: </label>
                    <div class="layui-input-block">
                        <input class="layui-input" name="devNo" placeholder="请输入台机号" lay-vertype="tips" lay-verify="required">
                        <input class="layui-input" name="devNo" placeholder="请输入机台号" lay-vertype="tips" lay-verify="required">
                    </div>
                </div>
                <div class="layui-form-item">
@@ -97,7 +97,7 @@
<div id="resetLocDiv" style="margin: 20px 0 10px 30px; display: none">
    <div class="layui-form layui-form-pane">
        <div class="layui-form-item">
            <label class="layui-form-label">台机号</label>
            <label class="layui-form-label">机台号</label>
            <div class="layui-input-inline">
                <input type="text" name="devNo" autocomplete="off" class="layui-input">
            </div>
src/main/webapp/views/orderPakout/out.html
@@ -107,9 +107,9 @@
                                </div>
                            </div>
                            <div class="layui-inline">
                                <label class="layui-form-label">台机号:</label>
                                <label class="layui-form-label">机台号:</label>
                                <div class="layui-input-inline">
                                    <input name="standby1" class="layui-input" placeholder="台机号"/>
                                    <input name="standby1" class="layui-input" placeholder="机台号"/>
                                </div>
                            </div>
                            <!--                            <div class="layui-inline">-->