Controllers/Warehouse/MesXkyController.cs
@@ -20,10 +20,17 @@
        public string? erpCode { get; set; }
    }
    //到货单明细json
    //到货单明细json 和 到货单条码
    public class XKYGetDhdDeatilRequest
    {
        public string? deliveryNo { get; set; }
        public string? erpCode { get; set; }
    }
    //到货单明细json 和 到货单条码
    public class XKYGetDhdHwsdRequest
    {
        public string? dnXkNo { get; set; }
        public string? erpCode { get; set; }
    }
@@ -41,7 +48,7 @@
            {
                status = 0,
                message = "OK",
                data = tbBillList
                data = ""
            };
        }
        catch (Exception ex)
@@ -62,7 +69,50 @@
            {
                status = 0,
                message = "OK",
                data = tbBillList
                data = ""
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    [HttpPost("GetXkyDhdBar")]
    public ResponseResult GetXkyDhdBar(XKYGetDhdDeatilRequest request)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos = m.GetXkyDhdBar(request);
            var tbBillList = resultInfos;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                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)