コード例 #1
0
        public string Component_LJSJ(string AUFNR, string MENGE, string NLPLA, string ZMATNR, string POSID, string ARBPL, string LARNT, string VORNR, string LGNUM, string LGTYP, string LGBER, string LPTYP, string WERKS, string LGORT)
        {
            string token = AppClass.GetSession("token").ToString();
            string rst   = "";
            PS_componentputaway ps_componentputaway = new PS_componentputaway();

            ps_componentputaway.RUFNM  = Session["ID"].ToString();
            ps_componentputaway.AUFNR  = AUFNR;
            ps_componentputaway.MENGE  = MENGE;
            ps_componentputaway.NLPLA  = NLPLA;
            ps_componentputaway.ZMATNR = ZMATNR;
            ps_componentputaway.POSID  = POSID;
            ps_componentputaway.ARBPL  = ARBPL;
            ps_componentputaway.LARNT  = LARNT;
            ps_componentputaway.VORNR  = VORNR;
            ps_componentputaway.LGNUM  = LGNUM;
            ps_componentputaway.LGTYP  = LGTYP;
            ps_componentputaway.LGBER  = LGBER;
            ps_componentputaway.LPTYP  = LPTYP;
            ps_componentputaway.WERKS  = WERKS;
            ps_componentputaway.LGORT  = LGORT;

            rst = psmodels.ComponentMove.ComponentPutAway(ps_componentputaway, token);
            rst = rst.Replace("\"", "");
            return(rst);
        }
コード例 #2
0
 public string ComponentPutAway(PS_componentputaway ps_componentputaway, string ptoken)
 {
     return(client.ComponentPutAway(ps_componentputaway, ptoken));
 }