|
|
|
@ -98,6 +98,17 @@ namespace DS.WMS.FeeApi.Controllers
|
|
|
|
|
return await _service.GetSettlementDetailsAsync(model.Ids);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取申请单费用明细的原始币别
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="documents"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpPost, Route("GetExchanges")]
|
|
|
|
|
public async Task<DataResult<List<SettlementDocument>>> GetExchangesAsync([FromBody] List<SettlementDocument> documents)
|
|
|
|
|
{
|
|
|
|
|
return await _service.GetExchangesAsync(documents);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 根据付费申请创建结算单
|
|
|
|
|
/// </summary>
|
|
|
|
|