| | |
| | | |
| | | private MesCustomer GetSysDepartment(ErpCustomer customer) |
| | | { |
| | | |
| | | //ERP傳輸的接口數據轉換為MES數據庫字段 |
| | | |
| | | return new MesCustomer |
| | | { |
| | | Id = Convert.ToDecimal(customer.Id), |
| | | Type = customer.Type, |
| | | CustNo = customer.FNumber, |
| | | CustSname = customer.FShortName, |
| | | CustName = customer.FName, |
| | |
| | | Telf1 = customer.Fmobilephone, |
| | | Fseller = customer.Fseller, |
| | | Fforbidstatus = customer.FForbidStatus, |
| | | fremarks =customer.Fremarks, |
| | | FSubsidiary =customer.FSubsidiary, |
| | | Fumbrella = customer.Fumbrella, |
| | | CreateDate=DateTime.Now, |
| | | LastupdateDate=DateTime.Now, |
| | | Company = "1000", |
| | | Factory = "1000" |
| | | }; |