Пример #1
0
        public DataSourceResult WHS_GoodReceiptNote_Create(IEnumerable <WHS_GoodReceiptNote> items, string CreatedBy)
        {
            string WHS_GoodReceiptNote_List             = string.Empty;
            string WHS_GoodReceiptNote_List_Serialized  = string.Empty;
            string WHS_GoodReceiptNote_Items_Serialized = string.Empty;

            string message = string.Empty;
            List <WHS_GoodReceiptNote> result = new List <WHS_GoodReceiptNote>();

            try
            {
                WMS.Models.DBContext model = new DBContext();
                foreach (WHS_GoodReceiptNote item in items)
                {
                    WHS_GoodReceiptNote dbItem = new WHS_GoodReceiptNote();

                    item.CreatedBy             = item.ModifiedBy = CreatedBy;
                    item.CreatedDate           = item.ModifiedDate = Common.getUTCDate();
                    dbItem.IsSelected          = item.IsSelected;
                    dbItem.TagStr              = item.TagStr;
                    dbItem.ASN_Detail_ID       = item.ASN_Detail_ID;
                    dbItem.CreatedBy           = item.CreatedBy;
                    dbItem.CreatedDate         = item.CreatedDate;
                    dbItem.Date_time_print_GRN = item.Date_time_print_GRN;
                    dbItem.ID             = item.ID;
                    dbItem.IsDeleted      = item.IsDeleted;
                    dbItem.Line_No        = item.Line_No;
                    dbItem.ModifiedBy     = item.ModifiedBy;
                    dbItem.ModifiedDate   = item.ModifiedDate;
                    dbItem.Note           = item.Note;
                    dbItem.Total_quantity = item.Total_quantity;
                    dbItem.User_ID        = item.User_ID;
                    dbItem.Warehouse_ID   = item.Warehouse_ID;

                    WHS_GoodReceiptNote_Items_Serialized += Common.SerializeObject(item);
                    model.DBSet_WHS_GoodReceiptNote.Add(dbItem);
                    Common.SaveChanges(model);

                    item.ID = dbItem.ID;
                    WHS_GoodReceiptNote_List += "[" + item.ID + "] ";

                    result.Add(item);
                    WHS_GoodReceiptNote_List_Serialized += Common.SerializeObject(item);
                }
            }
            catch (Exception ex)
            {
                message = ex.Message;
                Common.log.Error(WHS_GoodReceiptNote_Items_Serialized, ex);
            }
            finally
            {
                if (!string.IsNullOrEmpty(message))
                {
                    Common.log.Warn(CreatedBy + " => " + WHS_GoodReceiptNote_Items_Serialized, new Exception(message));
                }
                Common.log.Info(string.Format("User: {0} - [end] - WHS_GoodReceiptNote_Create: {1} - {2}", CreatedBy, WHS_GoodReceiptNote_List, WHS_GoodReceiptNote_List_Serialized));
            }
            return(result.ToDataSourceResult(new DataSourceRequest()));
        }
Пример #2
0
        public bool WHS_GoodReceiptNote_Update(IEnumerable <WHS_GoodReceiptNote> items, string ModifiedBy)
        {
            string WHS_GoodReceiptNote_List             = string.Empty;
            string WHS_GoodReceiptNote_List_Serialized  = string.Empty;
            string WHS_GoodReceiptNote_Items_Serialized = string.Empty;

            string result = string.Empty;
            bool   flag   = true;

            try
            {
                WMS.Models.DBContext model = new DBContext();
                foreach (WHS_GoodReceiptNote item in items)
                {
                    WHS_GoodReceiptNote dbItem = model.DBSet_WHS_GoodReceiptNote.Where(d => d.ID == item.ID).FirstOrDefault();
                    if (dbItem != null)
                    {
                        WHS_GoodReceiptNote_List += "[" + item.ID + "] ";
                        item.ModifiedBy           = ModifiedBy;
                        item.ModifiedDate         = Common.getUTCDate();
                        if (item.CreatedDate == DateTime.MinValue)
                        {
                            item.CreatedDate = dbItem.CreatedDate;
                        }
                        dbItem.IsSelected          = item.IsSelected;
                        dbItem.TagStr              = item.TagStr;
                        dbItem.ASN_Detail_ID       = item.ASN_Detail_ID;
                        dbItem.CreatedBy           = item.CreatedBy;
                        dbItem.CreatedDate         = item.CreatedDate;
                        dbItem.Date_time_print_GRN = item.Date_time_print_GRN;
                        dbItem.ID             = item.ID;
                        dbItem.IsDeleted      = item.IsDeleted;
                        dbItem.Line_No        = item.Line_No;
                        dbItem.ModifiedBy     = item.ModifiedBy;
                        dbItem.ModifiedDate   = item.ModifiedDate;
                        dbItem.Note           = item.Note;
                        dbItem.Total_quantity = item.Total_quantity;
                        dbItem.User_ID        = item.User_ID;
                        dbItem.Warehouse_ID   = item.Warehouse_ID;


                        WHS_GoodReceiptNote_Items_Serialized += Common.SerializeObject(item);
                        Common.SaveChanges(model);
                        WHS_GoodReceiptNote_List_Serialized += Common.SerializeObject(item);
                    }
                }
            }
            catch (Exception ex)
            {
                flag   = false;
                result = ex.Message;
                Common.log.Error(WHS_GoodReceiptNote_Items_Serialized, ex);
            }
            finally
            {
                if (!string.IsNullOrEmpty(result))
                {
                    Common.log.Warn(ModifiedBy + " => " + WHS_GoodReceiptNote_Items_Serialized, new Exception(result));
                }
                Common.log.Info(string.Format("User: {0} - [end] - WHS_GoodReceiptNote_Update: {1} - {2}", ModifiedBy, WHS_GoodReceiptNote_List, WHS_GoodReceiptNote_List_Serialized));
            }
            return(flag);
        }