##
mrzhssss
2022-09-06 c5bbd10c5425971f9ca595d2c9d461d1a997c64e
##
2个文件已修改
14 ■■■■■ 已修改文件
src/main/java/zy/cloud/wms/manager/entity/Item.java 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/itemTable.js 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/zy/cloud/wms/manager/entity/Item.java
@@ -150,6 +150,7 @@
    @TableField(value = "real_start_time", strategy = FieldStrategy.IGNORED)
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date realStartTime;
@@ -690,6 +691,15 @@
        return null;
    }
    public String getType$$(){
        if (this.type.equals("10")) {
            return "集成项目";
        }else {
            return "常规项目";
        }
    }
    public void setUpdateBy(Long updateBy) {
        this.updateBy = updateBy;
    }
src/main/webapp/static/js/itemTable.js
@@ -42,7 +42,9 @@
        cols: [[
            {field: 'uuid', title: '订单号', width: 100, align: 'center'},
            {field: 'inUuid', title: '项目编号'},
            {field: 'name', title: '项目名称'}
            {field: 'name', title: '项目名称'},
            {field: 'type$$', title: '项目类型'}
        ]],
        done: function (res, curr, count) {
            $('#dictTable+.layui-table-view .layui-table-body tbody>tr:first').trigger('click');