コード例 #1
0
ファイル: CTranferStockUI.cs プロジェクト: phinamcn03/ttdk
        public string Update(string inputValue)
        {
            string InputValue = CXmlPara.CreatePara(inputValue);

            ServiceREF.InventoryService.CApplicationMessage message = iv_service.UpdateTransfer(InputValue);
            return(CJson.SerializeObject(message));
        }
コード例 #2
0
 public string Update(string InputValue, int refType)
 {
     ServiceREF.InventoryService.CApplicationMessage message = new ServiceREF.InventoryService.CApplicationMessage();
     if (refType == 7)
     {
         message = iv_service.UpdateInward(InputValue);
     }
     else if (refType == 8)
     {
         message = iv_service.UpdateOutward(InputValue);
     }
     return(CJson.SerializeObject(message));
 }
コード例 #3
0
        public string UnPost(string _inputValue, int refType)
        {
            string InputValue = CXmlPara.CreatePara(_inputValue);

            ServiceREF.InventoryService.CApplicationMessage message = new ServiceREF.InventoryService.CApplicationMessage();
            if (refType == 7)
            {
                message = iv_service.UnPostInward(InputValue);
            }
            else if (refType == 8)
            {
                message = iv_service.UnPostOutward(InputValue);
            }
            return(CJson.SerializeObject(message));
        }
コード例 #4
0
ファイル: CItemUI.cs プロジェクト: phinamcn03/ttdk
 public string UpdateItemGroup(string InputValue)
 {
     ServiceREF.InventoryService.CApplicationMessage message = service.UpdateInventoryItemGroup(InputValue);
     return(CJson.SerializeObject(message));
 }