예제 #1
0
        // POST api/values

        public RTNMANVAL Post([FromBody] GR_HEADER value)
        {
            RTNMANVAL returnVal = null;

            SAPbobsCOM.Company oCompany = null;
            string             newKey   = "";

            try
            {
                oCompany = Company.GetCompany(Properties.Settings.Default.StrDbServer, Properties.Settings.Default.StrDbUserName, Properties.Settings.Default.StrDbPassword,
                                              Properties.Settings.Default.StrDbName, Properties.Settings.Default.StrSapB1UserName, Properties.Settings.Default.StrSapB1Password,
                                              Properties.Settings.Default.StrSapB1LicenseServer);

                newKey = Logic.SAP.SAP_GR.AddData(oCompany, value);

                returnVal = new RTNMANVAL()
                {
                    errorCode = "0",
                    message   = "Data has beed added",
                    value     = newKey
                };
            }
            catch (Exception e)
            {
                returnVal = new RTNMANVAL()
                {
                    errorCode = "-1",
                    message   = e.Message.ToString()
                };
            }

            return(returnVal);
        }
예제 #2
0
        public static GR_HEADER GetData(SAPbobsCOM.Company oCompany, int id)
        {
            Utils            control    = new Utils();
            List <GR_DETAIL> details    = new List <GR_DETAIL>();
            XDocument        xDoc       = new XDocument();
            XDocument        xDocDetail = new XDocument();

            string    sql = "select U_PrimaryNumberingPOS, U_DocumentNumberingPOS, docentry, docnum, DocDate, DocDueDate, TaxDate from oign where docentry = " + id;
            Recordset rs  = control._IDU_Recordset(oCompany, sql);

            xDoc = XDocument.Parse(rs.GetAsXML());

            sql = "select t1.LineNum, ItemCode, dscription, UomEntry, UomCode, Quantity, Price, t2.WhsCode, t2.WhsName from ign1 t1 " +
                  "join owhs t2 on t1.WhsCode = t2.WhsCode where t1.docentry = " + id;
            rs         = control._IDU_Recordset(oCompany, sql);
            xDocDetail = XDocument.Parse(rs.GetAsXML());

            XElement xEle       = xDoc.Element("BOM").Element("BO").Element("oign").Element("row");
            XElement xEleDetail = xDocDetail.Element("BOM").Element("BO").Element("ign1");

            foreach (var item in xEleDetail.Elements("row"))
            {
                GR_DETAIL model_detail = new GR_DETAIL()
                {
                    LineNum       = Convert.ToInt32(item.Element("LineNum").Value),
                    ItemCode      = item.Element("ItemCode").Value,
                    Description   = item.Element("dscription").Value,
                    UomEntry      = Convert.ToInt32(item.Element("UomEntry").Value),
                    UomCode       = item.Element("UomCode").Value,
                    Quantity      = Convert.ToDouble(item.Element("Quantity").Value),
                    Price         = Convert.ToDouble(item.Element("Price").Value),
                    WarehouseCode = item.Element("WhsCode").Value,
                    WarehouseName = item.Element("WhsName").Value
                };

                details.Add(model_detail);
            }

            GR_HEADER model = new GR_HEADER()
            {
                //PrimaryNumberingPOS = xEle.Element("U_PrimaryNumberingPOS").Value,
                //DocumentNumberingPOS = xEle.Element("U_DocumentNumberingPOS").Value,
                DocEntry     = xEle.Element("docentry").Value,
                DocNum       = xEle.Element("docnum").Value,
                DocumentDate = DateTime.ParseExact(xEle.Element("DocDate").Value, "yyyyMMdd",
                                                   CultureInfo.InvariantCulture, DateTimeStyles.None),
                DocDueDate = DateTime.ParseExact(xEle.Element("DocDueDate").Value, "yyyyMMdd",
                                                 CultureInfo.InvariantCulture, DateTimeStyles.None),
                TaxDate = DateTime.ParseExact(xEle.Element("TaxDate").Value, "yyyyMMdd",
                                              CultureInfo.InvariantCulture, DateTimeStyles.None),
                lines = details
            };

            return(model);
        }
예제 #3
0
        // GET api/values/5
        public RTNVAL Get(int id)
        {
            RTNVAL returnVal = null;

            SAPbobsCOM.Company oCompany = null;

            try
            {
                oCompany = Company.GetCompany(Properties.Settings.Default.StrDbServer, Properties.Settings.Default.StrDbUserName, Properties.Settings.Default.StrDbPassword,
                                              Properties.Settings.Default.StrDbName, Properties.Settings.Default.StrSapB1UserName, Properties.Settings.Default.StrSapB1Password,
                                              Properties.Settings.Default.StrSapB1LicenseServer);

                GR_HEADER model   = Logic.SAP.SAP_GR.GetData(oCompany, id);
                int       count   = 0;
                string    message = "No Data Found";

                if (model.DocEntry != "")
                {
                    count = 1; message = "Get Data Successfull";
                }

                returnVal = new GRSKALARVAL()
                {
                    errorCode   = "0",
                    message     = message,
                    values      = model,
                    recordCount = count
                };
            }
            catch (Exception e)
            {
                returnVal = new GRSKALARVAL()
                {
                    errorCode = "-1",
                    message   = e.Message.ToString()
                };
            }

            return(returnVal);
        }
예제 #4
0
 // PUT api/values/5
 public string Put(int id, [FromBody] GR_HEADER value)
 {
     return("Function is not available");
 }
예제 #5
0
        public static string AddData(Company oCompany, GR_HEADER model)
        {
            Documents oObject = null;
            RTNMANVAL rtn = new RTNMANVAL();
            int       errCode; string errMessage, strResult = "";

            try
            {
                oCompany.StartTransaction();

                oObject = oCompany.GetBusinessObject(BoObjectTypes.oInventoryGenEntry);

                oObject.DocDate = model.PostingDate;
                oObject.TaxDate = model.DocumentDate;
                if (model.Reference2.Length > 11)
                {
                    oObject.Reference2 = model.Reference2.Substring(0, 11);
                }
                else
                {
                    oObject.Reference2 = model.Reference2;
                }
                oObject.Comments = model.Remarks;
                oObject.DocType  = BoDocumentTypes.dDocument_Items;


                for (int i = 0; i < model.lines.Count; i++)
                {
                    oObject.Lines.ItemCode      = model.lines[i].ItemCode;
                    oObject.Lines.Quantity      = model.lines[i].Quantity;
                    oObject.Lines.UnitPrice     = model.lines[i].Price;
                    oObject.Lines.WarehouseCode = model.lines[i].WarehouseCode;
                    oObject.Lines.ProjectCode   = model.lines[i].ProjectCode;
                    if (model.lines[i].ProjectCode != null)
                    {
                        oObject.Lines.CostingCode = model.lines[i].CostCenter;
                    }
                    if (model.lines[i].AccountCode != null)
                    {
                        oObject.Lines.AccountCode = model.lines[i].AccountCode;
                    }

                    oObject.Lines.Add();
                }

                int addStatus = oObject.Add();

                if (addStatus == 0)
                {
                    if (strResult == "")
                    {
                        strResult = oCompany.GetNewObjectKey();
                    }
                    else
                    {
                        strResult = strResult + " | " + oCompany.GetNewObjectKey();
                    }
                }
                else
                {
                    if (oCompany.InTransaction)
                    {
                        oCompany.EndTransaction(BoWfTransOpt.wf_RollBack);
                    }

                    oCompany.GetLastError(out errCode, out errMessage);
                    throw new Exception("Error Code : " + errCode + " | Error Message : " + errMessage);
                }
                oCompany.EndTransaction(BoWfTransOpt.wf_Commit);
            }
            catch (Exception)
            {
                if (oCompany.InTransaction)
                {
                    oCompany.EndTransaction(BoWfTransOpt.wf_RollBack);
                }
                ;
                throw;
            }

            return(strResult);
        }