public JsonResult Create(WMS_Product_EntryModel model)
 {
     model.Id           = 0;
     model.CreatePerson = GetUserTrueName();
     model.CreateTime   = ResultHelper.NowTime;
     if (model.Lot == null || !DateTimeHelper.CheckYearMonth(model.Lot))
     {
         return(Json(JsonHandler.CreateMessage(0, "批次录入不符合规范")));
     }
     if (model != null && ModelState.IsValid)
     {
         if (m_BLL.Create(ref errors, model))
         {
             LogHandler.WriteServiceLog(GetUserTrueName(), "Id" + model.Id + ",ProductBillNum" + model.ProductBillNum, "成功", "创建", "WMS_Product_Entry");
             return(Json(JsonHandler.CreateMessage(1, Resource.InsertSucceed)));
         }
         else
         {
             string ErrorCol = errors.Error;
             LogHandler.WriteServiceLog(GetUserTrueName(), "Id" + model.Id + ",ProductBillNum" + model.ProductBillNum + "," + ErrorCol, "失败", "创建", "WMS_Product_Entry");
             return(Json(JsonHandler.CreateMessage(0, Resource.InsertFail + ErrorCol)));
         }
     }
     else
     {
         return(Json(JsonHandler.CreateMessage(0, Resource.InsertFail)));
     }
 }
        public virtual WMS_Product_EntryModel GetById(object id)
        {
            if (IsExists(id))
            {
                WMS_Product_Entry      entity = m_Rep.GetById(id);
                WMS_Product_EntryModel model  = new WMS_Product_EntryModel();
                model.Id             = entity.Id;
                model.ProductBillNum = entity.ProductBillNum;
                model.EntryBillNum   = entity.EntryBillNum;
                model.Department     = entity.Department;
                model.Partid         = entity.Partid;
                model.ProductQty     = entity.ProductQty;
                model.InvId          = entity.InvId;
                model.SubInvId       = entity.SubInvId;
                model.Remark         = entity.Remark;
                model.Attr1          = entity.Attr1;
                model.Attr2          = entity.Attr2;
                model.Attr3          = entity.Attr3;
                model.Attr4          = entity.Attr4;
                model.Attr5          = entity.Attr5;
                model.CreatePerson   = entity.CreatePerson;
                model.CreateTime     = entity.CreateTime;
                model.ModifyPerson   = entity.ModifyPerson;
                model.ModifyTime     = entity.ModifyTime;
                model.Lot            = entity.Lot;

                return(model);
            }
            else
            {
                return(null);
            }
        }
        public ActionResult Create()
        {
            ViewBag.Inv = new SelectList(_InvInfoBll.GetList(ref setNoPagerAscById, ""), "Id", "InvName");
            WMS_Product_EntryModel model = new WMS_Product_EntryModel()
            {
                ProductBillNum = "Z" + DateTime.Now.ToString("yyyyMMddHHmmssff"),
            };

            return(View(model));
        }
        public virtual bool Edit(ref ValidationErrors errors, WMS_Product_EntryModel model)
        {
            try
            {
                WMS_Product_Entry entity = m_Rep.GetById(model.Id);
                if (entity == null)
                {
                    errors.Add(Resource.Disable);
                    return(false);
                }
                entity.Id             = model.Id;
                entity.ProductBillNum = model.ProductBillNum;
                entity.EntryBillNum   = model.EntryBillNum;
                entity.Department     = model.Department;
                entity.Partid         = model.Partid;
                entity.ProductQty     = model.ProductQty;
                entity.InvId          = model.InvId;
                entity.SubInvId       = model.SubInvId;
                entity.Remark         = model.Remark;
                entity.Attr1          = model.Attr1;
                entity.Attr2          = model.Attr2;
                entity.Attr3          = model.Attr3;
                entity.Attr4          = model.Attr4;
                entity.Attr5          = model.Attr5;
                entity.CreatePerson   = model.CreatePerson;
                entity.CreateTime     = model.CreateTime;
                entity.ModifyPerson   = model.ModifyPerson;
                entity.ModifyTime     = model.ModifyTime;
                entity.Lot            = model.Lot;



                if (m_Rep.Edit(entity))
                {
                    return(true);
                }
                else
                {
                    errors.Add(Resource.NoDataChange);
                    return(false);
                }
            }
            catch (Exception ex)
            {
                errors.Add(ex.Message);
                ExceptionHander.WriteException(ex);
                return(false);
            }
        }
Esempio n. 5
0
        public override bool Create(ref ValidationErrors errors, WMS_Product_EntryModel model)
        {
            try
            {
                //开启事务
                using (DBContainer db = new DBContainer())
                {
                    var tran = db.Database.BeginTransaction();  //开启事务

                    WMS_Product_Entry entity = new WMS_Product_Entry();
                    entity.ProductBillNum = model.ProductBillNum;
                    entity.Department     = model.Department;
                    entity.Partid         = model.Partid;
                    entity.ProductQty     = model.ProductQty;
                    entity.InvId          = model.InvId;
                    entity.SubInvId       = model.SubInvId;
                    entity.Remark         = model.Remark;
                    entity.CreatePerson   = model.CreatePerson;
                    entity.CreateTime     = model.CreateTime;
                    entity.Lot            = model.Lot;

                    db.WMS_Product_Entry.Add(entity);

                    if (db.SaveChanges() == 1)
                    {
                        ObjectParameter returnValue = new ObjectParameter("ReturnValue", typeof(string));
                        db.P_WMS_ProcessProductEntry(model.CreatePerson, model.ProductBillNum, returnValue);
                        if (returnValue.Value == DBNull.Value)
                        {
                            tran.Commit();
                            return(true);
                        }
                        else
                        {
                            tran.Rollback();
                            errors.Add((string)returnValue.Value);
                            return(false);
                        }
                    }
                    return(false);
                }
            }
            catch (Exception ex)
            {
                errors.Add(ex.InnerException != null ? ex.InnerException.Message : ex.Message);
                return(false);
            }
        }
 public JsonResult Edit(WMS_Product_EntryModel model)
 {
     if (model != null && ModelState.IsValid)
     {
         if (m_BLL.Edit(ref errors, model))
         {
             LogHandler.WriteServiceLog(GetUserTrueName(), "Id" + model.Id + ",ProductBillNum" + model.ProductBillNum, "成功", "修改", "WMS_Product_Entry");
             return(Json(JsonHandler.CreateMessage(1, Resource.EditSucceed)));
         }
         else
         {
             string ErrorCol = errors.Error;
             LogHandler.WriteServiceLog(GetUserTrueName(), "Id" + model.Id + ",ProductBillNum" + model.ProductBillNum + "," + ErrorCol, "失败", "修改", "WMS_Product_Entry");
             return(Json(JsonHandler.CreateMessage(0, Resource.EditFail + ErrorCol)));
         }
     }
     else
     {
         return(Json(JsonHandler.CreateMessage(0, Resource.EditFail)));
     }
 }
Esempio n. 7
0
        public bool ImportExcelData(string oper, string filePath, ref ValidationErrors errors)
        {
            bool rtn = true;

            var targetFile = new FileInfo(filePath);

            if (!targetFile.Exists)
            {
                errors.Add("导入的数据文件不存在");
                return(false);
            }

            var excelFile = new ExcelQueryFactory(filePath);

            using (XLWorkbook wb = new XLWorkbook(filePath))
            {
                //第一个Sheet
                using (IXLWorksheet wws = wb.Worksheets.First())
                {
                    //对应列头
                    excelFile.AddMapping <WMS_Product_EntryModel>(x => x.ProductBillNum, "入库单号(业务)(必输)");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.EntryBillNum, "入库单号(系统)");
                    excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Department, "本货部门");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.Partid, "物料");
                    excelFile.AddMapping <WMS_Product_EntryModel>(x => x.PartCode, "物料编码(必输)");
                    excelFile.AddMapping <WMS_Product_EntryModel>(x => x.ProductQty, "数量(必输)");
                    excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Lot, "批次(格式:YYYY-MM-DD)");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.InvId, "库存");
                    excelFile.AddMapping <WMS_Product_EntryModel>(x => x.InvName, "库房");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.SubInvId, "子库存");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.Remark, "备注");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.Attr1, "");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.Attr2, "");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.Attr3, "");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.Attr4, "");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.Attr5, "");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.CreatePerson, "创建人");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.CreateTime, "创建时间");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.ModifyPerson, "修改人");
                    //excelFile.AddMapping<WMS_Product_EntryModel>(x => x.ModifyTime, "修改时间");

                    //SheetName,第一个Sheet
                    var excelContent = excelFile.Worksheet <WMS_Product_EntryModel>(0);

                    //开启事务
                    using (DBContainer db = new DBContainer())
                    {
                        var    tran           = db.Database.BeginTransaction(); //开启事务
                        int    rowIndex       = 0;
                        string productBillNum = "Z" + DateTime.Now.ToString("yyyyMMddHHmmssff");

                        //检查数据正确性
                        foreach (var row in excelContent)
                        {
                            rowIndex += 1;
                            string errorMessage = String.Empty;
                            var    model        = new WMS_Product_EntryModel();
                            model.Id             = row.Id;
                            model.ProductBillNum = productBillNum;
                            //productBillNum = row.ProductBillNum;
                            model.EntryBillNum = row.EntryBillNum;
                            model.Department   = row.Department;
                            //model.Partid = row.Partid;
                            model.PartCode   = row.PartCode;
                            model.ProductQty = row.ProductQty;
                            model.Lot        = row.Lot;
                            //model.InvId = row.InvId;
                            model.InvName = row.InvName;
                            //model.SubInvId = row.SubInvId;
                            model.Remark       = row.Remark;
                            model.Attr1        = row.Attr1;
                            model.Attr2        = row.Attr2;
                            model.Attr3        = row.Attr3;
                            model.Attr4        = row.Attr4;
                            model.Attr5        = row.Attr5;
                            model.CreatePerson = row.CreatePerson;
                            model.CreateTime   = row.CreateTime;
                            model.ModifyPerson = row.ModifyPerson;
                            model.ModifyTime   = row.ModifyTime;

                            if (!String.IsNullOrEmpty(errorMessage))
                            {
                                rtn = false;
                                errors.Add(string.Format("第 {0} 列发现错误:{1}{2}", rowIndex, errorMessage, "<br/>"));
                                wws.Cell(rowIndex + 1, excelFile.GetColumnNames("Sheet1").Count()).Value = errorMessage;
                                continue;
                            }

                            //执行额外的数据校验
                            try
                            {
                                AdditionalCheckExcelData(db, ref model);
                            }
                            catch (Exception ex)
                            {
                                rtn          = false;
                                errorMessage = ex.Message;
                                errors.Add(string.Format("第 {0} 列发现错误:{1}{2}", rowIndex, errorMessage, "<br/>"));
                                wws.Cell(rowIndex + 1, excelFile.GetColumnNames("Sheet1").Count()).Value = errorMessage;
                                continue;
                            }

                            //写入数据库
                            WMS_Product_Entry entity = new WMS_Product_Entry();
                            entity.Id             = model.Id;
                            entity.ProductBillNum = model.ProductBillNum;
                            //entity.ProductBillNum = "ZZJ" + DateTime.Now.ToString("yyyyMMddHHmmssff");
                            entity.EntryBillNum = model.EntryBillNum;
                            //entity.EntryBillNum = "ZZJ" + DateTime.Now.ToString("yyyyMMddHHmmssff");
                            entity.Department = "总装车间";
                            entity.Partid     = model.Partid;
                            entity.ProductQty = model.ProductQty;
                            entity.InvId      = model.InvId;
                            entity.Lot        = model.Lot;
                            //entity.SubInvId = model.SubInvId;
                            entity.Remark = model.Remark;
                            //entity.Attr1 = model.Attr1;
                            //entity.Attr2 = model.Attr2;
                            //entity.Attr3 = model.Attr3;
                            //entity.Attr4 = model.Attr4;
                            //entity.Attr5 = model.Attr5;
                            entity.CreatePerson = oper;
                            entity.CreateTime   = DateTime.Now;
                            entity.ModifyPerson = oper;
                            entity.ModifyTime   = DateTime.Now;

                            db.WMS_Product_Entry.Add(entity);
                            try
                            {
                                db.SaveChanges();
                            }
                            catch (Exception ex)
                            {
                                rtn = false;
                                //将当前报错的entity状态改为分离,类似EF的回滚(忽略之前的Add操作)
                                db.Entry(entity).State = System.Data.Entity.EntityState.Detached;
                                errorMessage           = ex.InnerException.InnerException.Message;
                                errors.Add(string.Format("第 {0} 列发现错误:{1}{2}", rowIndex, errorMessage, "<br/>"));
                                wws.Cell(rowIndex + 1, excelFile.GetColumnNames("Sheet1").Count()).Value = errorMessage;
                            }
                        }

                        if (rtn)
                        {
                            //全部保存成功后,调用存储过程“P_WMS_ProcessProductEntry”入库。
                            ObjectParameter returnValue = new ObjectParameter("ReturnValue", typeof(string));
                            db.P_WMS_ProcessProductEntry(oper, productBillNum, returnValue);
                            if (returnValue.Value == DBNull.Value)
                            {
                                tran.Commit();
                            }
                            else
                            {
                                tran.Rollback();
                                errors.Add((string)returnValue.Value);
                            }

                            //tran.Commit();  //必须调用Commit(),不然数据不会保存
                        }
                        else
                        {
                            tran.Rollback();    //出错就回滚
                        }
                    }
                }
                wb.Save();
            }

            return(rtn);
        }
Esempio n. 8
0
        private void AdditionalCheckExcelData(DBContainer db, ref WMS_Product_EntryModel model)
        {
            //获取物料ID
            if (!String.IsNullOrEmpty(model.PartCode))
            {
                var partCode = model.PartCode;
                Expression <Func <WMS_Part, bool> > exp = x => x.PartCode == partCode;

                var part = db.WMS_Part.FirstOrDefault(exp);
                if (part == null)
                {
                    throw new Exception("物料编码不存在!");
                }
                else
                {
                    model.Partid = part.Id;
                }
            }
            else
            {
                throw new Exception("物料编码不能为空!");
            }

            //获取仓库ID
            if (!String.IsNullOrEmpty(model.PartCode))
            {
                var invName = "主仓库";
                Expression <Func <WMS_InvInfo, bool> > exp = x => x.InvName == invName;

                var inv = db.WMS_InvInfo.FirstOrDefault(exp);
                if (inv == null)
                {
                    throw new Exception("库房不存在!");
                }
                else
                {
                    model.InvId = inv.Id;
                }
            }
            //else
            //{
            //    throw new Exception("库房不能为空!");
            //}

            //校验入库单号与物料
            if (!String.IsNullOrEmpty(model.ProductBillNum))
            {
                var partcode       = model.PartCode;
                var productBillNum = model.ProductBillNum;
                Expression <Func <WMS_Product_Entry, bool> > exp = x => x.WMS_Part.PartCode == partcode && x.ProductBillNum == productBillNum;

                var part = db.WMS_Product_Entry.FirstOrDefault(exp);
                if (part != null)
                {
                    throw new Exception("入库单号与物料编码重复!");
                }
            }
            //else
            //{
            //    throw new Exception("入库单号不能为空!");
            //}

            //校验批次号,没有批次号自动赋值为当前月
            if (!String.IsNullOrEmpty(model.Lot))
            {
                if (!DateTimeHelper.CheckYearMonth(model.Lot))
                {
                    throw new Exception("批次号不合符规范!");
                }
            }
            else
            {
                //model.Lot = DateTime.Now.ToString("yyyyMM");
                model.Lot = DateTimeHelper.GetLot(DateTime.Now);
            }

            if (model.ProductQty == 0)
            {
                throw new Exception("数量不能为空!");
            }
        }
        public ActionResult Details(long id)
        {
            WMS_Product_EntryModel entity = m_BLL.GetById(id);

            return(View(entity));
        }
        private void AdditionalCheckExcelData(DBContainer db, ref WMS_Product_EntryModel model)
        {
            //获取物料ID
            if (!String.IsNullOrEmpty(model.PartCode))
            {
                var partCode = model.PartCode;
                Expression <Func <WMS_Part, bool> > exp = x => x.PartCode == partCode;

                var part = db.WMS_Part.FirstOrDefault(exp);
                if (part == null)
                {
                    throw new Exception("物料编码不存在!");
                }
                else
                {
                    model.Partid = part.Id;
                }
            }
            else
            {
                throw new Exception("物料编码不能为空!");
            }

            //获取仓库ID
            if (!String.IsNullOrEmpty(model.InvName))
            {
                var invName = model.InvName;
                Expression <Func <WMS_InvInfo, bool> > exp = x => x.InvName == invName;

                var inv = db.WMS_InvInfo.FirstOrDefault(exp);
                if (inv == null)
                {
                    throw new Exception("库房不存在!");
                }
                else
                {
                    model.InvId = inv.Id;
                }
            }
            else
            {
                throw new Exception("库房不能为空!");
            }

            //校验入库单号与物料
            if (!String.IsNullOrEmpty(model.ProductBillNum))
            {
                var partcode       = model.PartCode;
                var productBillNum = model.ProductBillNum;
                Expression <Func <WMS_Product_Entry, bool> > exp = x => x.WMS_Part.PartCode == partcode && x.ProductBillNum == productBillNum;

                var part = db.WMS_Product_Entry.FirstOrDefault(exp);
                if (part != null)
                {
                    throw new Exception("入库单号与物料编码重复!");
                }
            }
            else
            {
                throw new Exception("入库单号不能为空!");
            }

            //校验批次号
            if (String.IsNullOrEmpty(model.Lot))
            {
                throw new Exception("批次号不能为空!");
            }
        }
        /// <summary>
        /// 校验Excel数据,这个方法一般用于重写校验逻辑
        /// </summary>
        public virtual bool CheckImportData(string fileName, List <WMS_Product_EntryModel> list, ref ValidationErrors errors)
        {
            var targetFile = new FileInfo(fileName);

            if (!targetFile.Exists)
            {
                errors.Add("导入的数据文件不存在");
                return(false);
            }

            var excelFile = new ExcelQueryFactory(fileName);

            //对应列头
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.ProductBillNum, "入库单号(业务)");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.EntryBillNum, "入库单号(系统)");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Department, "本货部门");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Partid, "物料");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.ProductQty, "数量");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.InvId, "库存");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.SubInvId, "子库存");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Remark, "备注");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Attr1, "Attr1");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Attr2, "Attr2");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Attr3, "Attr3");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Attr4, "Attr4");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Attr5, "Attr5");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.CreatePerson, "创建人");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.CreateTime, "创建时间");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.ModifyPerson, "修改人");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.ModifyTime, "修改时间");
            excelFile.AddMapping <WMS_Product_EntryModel>(x => x.Lot, "Lot");

            //SheetName
            var excelContent = excelFile.Worksheet <WMS_Product_EntryModel>(0);
            int rowIndex     = 1;

            //检查数据正确性
            foreach (var row in excelContent)
            {
                var errorMessage = new StringBuilder();
                var entity       = new WMS_Product_EntryModel();
                entity.Id             = row.Id;
                entity.ProductBillNum = row.ProductBillNum;
                entity.EntryBillNum   = row.EntryBillNum;
                entity.Department     = row.Department;
                entity.Partid         = row.Partid;
                entity.ProductQty     = row.ProductQty;
                entity.InvId          = row.InvId;
                entity.SubInvId       = row.SubInvId;
                entity.Remark         = row.Remark;
                entity.Attr1          = row.Attr1;
                entity.Attr2          = row.Attr2;
                entity.Attr3          = row.Attr3;
                entity.Attr4          = row.Attr4;
                entity.Attr5          = row.Attr5;
                entity.CreatePerson   = row.CreatePerson;
                entity.CreateTime     = row.CreateTime;
                entity.ModifyPerson   = row.ModifyPerson;
                entity.ModifyTime     = row.ModifyTime;
                entity.Lot            = row.Lot;

                //=============================================================================
                if (errorMessage.Length > 0)
                {
                    errors.Add(string.Format(
                                   "第 {0} 列发现错误:{1}{2}",
                                   rowIndex,
                                   errorMessage,
                                   "<br/>"));
                }
                list.Add(entity);
                rowIndex += 1;
            }
            if (errors.Count > 0)
            {
                return(false);
            }
            return(true);
        }