feat: 国际进港理货报告四个操作按钮功能实现
实现人工放行、状态重置、删除理货、理货申报四个按钮的完整业务逻辑, 新增删除申报和状态重置弹框组件,对接后端API接口。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1902,6 +1902,30 @@ interface Api {
|
||||
@POST("IntImpTally/listHaWb")
|
||||
suspend fun getIntImpTallySubList(@Body data: RequestBody): BaseResultBean<List<GjjImportTally>>
|
||||
|
||||
/**
|
||||
* 国际进港理货-人工放行
|
||||
*/
|
||||
@POST("IntImpTally/customCommand")
|
||||
suspend fun intImpTallyCustomCommand(@Body data: RequestBody): BaseResultBean<Boolean>
|
||||
|
||||
/**
|
||||
* 国际进港理货-状态重置
|
||||
*/
|
||||
@POST("IntImpTally/resetDeclare")
|
||||
suspend fun intImpTallyResetDeclare(@Body data: RequestBody): BaseResultBean<Boolean>
|
||||
|
||||
/**
|
||||
* 国际进港理货-删除申报
|
||||
*/
|
||||
@POST("IntImpTally/deleteDeclare")
|
||||
suspend fun intImpTallyDeleteDeclare(@Body data: RequestBody): BaseResultBean<Boolean>
|
||||
|
||||
/**
|
||||
* 国际进港理货-理货申报
|
||||
*/
|
||||
@POST("IntImpTally/declare")
|
||||
suspend fun intImpTallyDeclare(@Body data: RequestBody): BaseResultBean<Boolean>
|
||||
|
||||
/**
|
||||
* 国际进港舱单-货物发放
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user