南骏 池
2025-05-19 07a9b9127da141cbc8afcb2932ed31208cf31af1
Controllers/Warehouse/MesXkyController.cs
@@ -20,7 +20,7 @@
        public string? erpCode { get; set; }
    }
    //到货单明细json
    //到货单明细json 和 到货单条码
    public class XKYGetDhdDeatilRequest
    {
        public string? deliveryNo { get; set; }
@@ -71,4 +71,25 @@
        }
    }
    [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 = tbBillList
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}