Administrator
2024-03-06 0ac24686e0ea025e499f7055d591bc1251bbb3f5
出库流程问题修改
3个文件已修改
12 ■■■■ 已修改文件
HTML/views/SOSetting/ComBoxInfo.html 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/Model/InterFaceModel/SoModel.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/WMS.BLL/BllSoServer/ExportNoticeServer.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
HTML/views/SOSetting/ComBoxInfo.html
@@ -83,7 +83,7 @@
                                infoOptions.page = {
                                    curr: 1
                                }
                                tableIns = table.render(infoOptions);
                                table.render(infoOptions);
                            }
                            else { //不成功
                                layer.msg('获取箱码明细列表信息失败!', {
@@ -97,7 +97,7 @@
                // 表单需要的变量
                var infoOptions = {
                    elem: '#LAY-app-content-list',
                    height: h1,
                    height: 'full-100',
                    id: 'LAY-app-content-list',
                    page: true,
                    limit: pageCnt,
Wms/Model/InterFaceModel/SoModel.cs
@@ -56,7 +56,7 @@
        /// <summary>
        /// 数量
        /// </summary>
        public int Qty { get; set; }
        public decimal Qty { get; set; }
        
        /// <summary>
        /// 供货批次
Wms/WMS.BLL/BllSoServer/ExportNoticeServer.cs
@@ -224,7 +224,7 @@
                    {
                        SkuNo = d.SkuNo,
                        LotNo = d.LotNo,
                        Qty = int.Parse(d.CompleteQty.ToString())
                        Qty = (decimal)d.CompleteQty
                    };
                    list.Add(item);
                }
@@ -247,8 +247,8 @@
                #endregion
                notice.Status = "6";
                notice.UpdateTime = DateTime.Now;
                notice.UpdateUser = userId;
                notice.CheckTime = DateTime.Now;
                notice.CheckUser = userId;
                Db.Updateable(notice).ExecuteCommand();
                new OperationSOServer().AddLogOperationSo("出库作业", "出库单据", notice.SONo, "复核", $"复核了单据号为{notice.SONo}的单据信息", userId);