| | |
| | | { |
| | | return YqnQbService.SetStationInBill(oMain); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取进站单列表 |
| | | /// </summary> |
| | | /// <param name="sWhere"></param> |
| | | /// <returns></returns> |
| | | [Route("api/newBill/getStationInBillList")] |
| | | [HttpGet] |
| | | public ApiResult<DataSet> GetStationInBillList(string sWhere) |
| | | { |
| | | return YqnQbService.GetStationInBillList(sWhere); |
| | | } |
| | | /// <summary> |
| | | /// 获取出站单列表 |
| | | /// </summary> |
| | | /// <param name="sWhere"></param> |
| | | /// <returns></returns> |
| | | [Route("api/newBill/getStationOutBillList")] |
| | | [HttpGet] |
| | | public ApiResult<DataSet> GetStationOutBillList(string sWhere) |
| | | { |
| | | return YqnQbService.GetStationOutBillList(sWhere); |
| | | } |
| | | /// <summary> |
| | | /// 出站站接收单 |
| | | /// </summary> |
| | |
| | | [HttpPost] |
| | | public ApiResult SetStationOutBill(StationOutBillView oMain) |
| | | { |
| | | |
| | | return YqnQbService.SetStationOutBill(oMain); |
| | | } |
| | | } |