|
@ -261,7 +261,30 @@ public class TransferNoteAppService : SfsStoreWithDetailsAppServiceBase |
|
|
return await GetSubTypeListAsync(sfsRequestDTO, EnumTransSubType.Transfer_Inside, includeDetails, |
|
|
return await GetSubTypeListAsync(sfsRequestDTO, EnumTransSubType.Transfer_Inside, includeDetails, |
|
|
cancellationToken).ConfigureAwait(false); |
|
|
cancellationToken).ConfigureAwait(false); |
|
|
} |
|
|
} |
|
|
|
|
|
[HttpPost("get-Injection-list")] |
|
|
|
|
|
public virtual async Task<PagedResultDto<TransferNoteDTO>> GetInjectionTransferListAsync( |
|
|
|
|
|
SfsStoreRequestInputBase sfsRequestDTO, bool includeDetails = false, |
|
|
|
|
|
CancellationToken cancellationToken = default) |
|
|
|
|
|
{ |
|
|
|
|
|
return await GetSubTypeListAsync(sfsRequestDTO, EnumTransSubType.Transfer_Injection, includeDetails, |
|
|
|
|
|
cancellationToken).ConfigureAwait(false); |
|
|
|
|
|
} |
|
|
|
|
|
[HttpPost("get-coating-list")] |
|
|
|
|
|
public virtual async Task<PagedResultDto<TransferNoteDTO>> GetCoatingTransferListAsync( |
|
|
|
|
|
SfsStoreRequestInputBase sfsRequestDTO, bool includeDetails = false, |
|
|
|
|
|
CancellationToken cancellationToken = default) |
|
|
|
|
|
{ |
|
|
|
|
|
return await GetSubTypeListAsync(sfsRequestDTO, EnumTransSubType.Transfer_Coating, includeDetails, |
|
|
|
|
|
cancellationToken).ConfigureAwait(false); |
|
|
|
|
|
} |
|
|
|
|
|
[HttpPost("get-assemble-list")] |
|
|
|
|
|
public virtual async Task<PagedResultDto<TransferNoteDTO>> GetAssembleTransferListAsync( |
|
|
|
|
|
SfsStoreRequestInputBase sfsRequestDTO, bool includeDetails = false, |
|
|
|
|
|
CancellationToken cancellationToken = default) |
|
|
|
|
|
{ |
|
|
|
|
|
return await GetSubTypeListAsync(sfsRequestDTO, EnumTransSubType.Transfer_Assemble, includeDetails, |
|
|
|
|
|
cancellationToken).ConfigureAwait(false); |
|
|
|
|
|
} |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 按条件获取客户储位间调拨的分页列表
|
|
|
/// 按条件获取客户储位间调拨的分页列表
|
|
|
/// request sample
|
|
|
/// request sample
|
|
|