| | |
| | | /// <returns></returns> |
| | | |
| | | [HttpPost] |
| | | public SimpleResult MaterReceiveXmlData([FromBody] MaterDto.Root xmlData) |
| | | public WLReturnRoot.Root MaterReceiveXmlData([FromBody] MaterDto.Root xmlData) |
| | | { |
| | | #region xml数据接收转数组 |
| | | |
| | |
| | | #endregion |
| | | |
| | | #region 外采入库业务流程 |
| | | SimpleResult simpleResult = WmsSpaHelper.Mater_In(xmlData); |
| | | WLReturnRoot.Root simpleResult = WmsSpaHelper.Mater_In(xmlData); |
| | | //接收返回参数 生成sap对接文档返回格式 |
| | | //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg); |
| | | |
| | |
| | | // Content = new StringContent(xml, Encoding.UTF8, "application/xml") |
| | | //}; |
| | | //return response; |
| | | |
| | | var json = JsonConvert.SerializeObject(simpleResult); |
| | | return simpleResult; |
| | | #endregion |
| | | } |