8c6e292c508312eca0aef4c203e5857c4fc3094c..131347ad63bb534b5abb6dbc979f0a47d780d8ff
2025-01-15 hwh
·
131347 对比 | 目录
2025-01-14 hwh
登录后页面显示调整
985769 对比 | 目录
2024-09-18 zhaowc
增加对申请入库时对平库库位的校验
zwc
bdd84c 对比 | 目录
5个文件已修改
17 ■■■■ 已修改文件
Pda/View/login.html 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Pda/js/public.js 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/WMS.Entity/BllSoEntity/BllExportAllot.cs 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/Wms/Controllers/JobController.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Pda/View/login.html
@@ -200,7 +200,7 @@
                                icon: 1,
                                time: 500 //2秒关闭(如果不配置,默认是3秒)
                            }, function () {
                                $.cookie('token', res.data);
                                $.cookie('token', res.data,{ path: '/' });
                                //回调
                                location.href="/View/index.html";
                            });
Pda/js/public.js
@@ -132,6 +132,9 @@
}
function isTokenExpired(token) {
    if(token==undefined||token==''){
        return true;
    }
    const tokenParts = token.split('.');
    if (tokenParts.length !== 3) {
      return true; // JWT 格式不正确
Wms/WMS.BLL/BllAsnServer/PalletBindServer.cs
@@ -1563,7 +1563,9 @@
                    throw new Exception("请选择所属仓库");
                }
                //验证是否为平库入库
                if (houseNo == "W02")
                var houseType = Db.Queryable<SysWareHouse>().First(a => a.WareHouseNo == houseNo);//获取仓库类型
                //验证是否为平库入库
                if (houseType.Type == "2")
                {
                    throw new Exception("平库请使用PDA手持进行平库入库");
                }
Wms/WMS.Entity/BllSoEntity/BllExportAllot.cs
@@ -54,12 +54,7 @@
        /// Nullable:True
        /// </summary>           
        public string LotNo {get;set;}
        /// <summary>
        /// Desc:储位地址
        /// Default:
        /// Nullable:True
        /// </summary>
        public string LocatNo { get; set; }
        /// <summary>
        /// Desc:批次描述
Wms/Wms/Controllers/JobController.cs
@@ -45,7 +45,6 @@
            {
                return "不允许过频繁执行任务!";
            }
            throw Oops.Bah("测试异常");
            return await scheduler.AddScheduleJobAsync(entity);
        }