南骏 池
18 小时以前 5df60eb35037611aaa977428c5cd41ad391f72af
Controllers/Warehouse/MesXkyController.cs
@@ -27,6 +27,13 @@
        public string? erpCode { get; set; }
    }
    //到货单明细json 和 到货单条码
    public class XKYGetDhdHwsdRequest
    {
        public string? dnXkNo { get; set; }
        public string? erpCode { get; set; }
    }
    MesXkyService m = new MesXkyService();
    [HttpPost("GetXkyDhd")]
@@ -41,7 +48,7 @@
            {
                status = 0,
                message = "OK",
                data = tbBillList
                data = ""
            };
        }
        catch (Exception ex)
@@ -62,7 +69,7 @@
            {
                status = 0,
                message = "OK",
                data = tbBillList
                data = ""
            };
        }
        catch (Exception ex)
@@ -83,7 +90,29 @@
            {
                status = 0,
                message = "OK",
                data = tbBillList
                data = ""
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    [HttpPost("GetXkyHwsd")]
    public ResponseResult GetXkyHwsd(XKYGetDhdHwsdRequest request)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos = m.GetXkyHwsd(request);
            var tbBillList = resultInfos;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = ""
            };
        }
        catch (Exception ex)