feat: 国际进港舱单货物发放、装机单查询参数对齐及运单号自动查询
- 实现货物发放功能,对接 /IntImpManifest/putUpCargo 接口 - 装机单列表查询参数改为与父页面一致(fid + fdep) - 修复装机单列表接口返回类型(PageInfo 无需 BaseResultBean 包装) - 舱单和装机单页面运单号输入框支持4位以上自动查询 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1838,7 +1838,7 @@ interface Api {
|
||||
* 国际进港舱单-分拣理货(装机单)-分页查询
|
||||
*/
|
||||
@POST("IntImpManifest/pageQueryAir")
|
||||
suspend fun getIntImpLoadingList(@Body data: RequestBody): BaseResultBean<PageInfo<GjjManifest>>
|
||||
suspend fun getIntImpLoadingList(@Body data: RequestBody): PageInfo<GjjManifest>
|
||||
|
||||
/**
|
||||
* 国际进港舱单-分拣理货(装机单)-分页合计
|
||||
@@ -1858,6 +1858,12 @@ interface Api {
|
||||
@POST("IntImpTally/pageQueryTotal")
|
||||
suspend fun getIntImpTallyTotal(@Body data: RequestBody): BaseResultBean<ManifestTotalDto>
|
||||
|
||||
/**
|
||||
* 国际进港舱单-货物发放
|
||||
*/
|
||||
@POST("IntImpManifest/putUpCargo")
|
||||
suspend fun intImpManifestPutUpCargo(@Body data: RequestBody): BaseResultBean<String>
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// 国际进港-事故签证
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user