feat: 出港组装 开始组装 卸货、装货 api

This commit is contained in:
2025-12-18 10:10:04 +08:00
parent e208d54a3c
commit 01306d1302
4 changed files with 136 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ class AssembleWaybillBean {
var isMarked: Boolean = false // 是否标记(红色显示)
var fno: String = ""
var fdate: String = ""
var whId: Long = 0 // 运单ID用于接口调用
val fLightInfo: String
get() = "$fno/${fdate.replace("-", "")}"

View File

@@ -610,6 +610,24 @@ interface Api {
@GET("IntExpAssemble/getUld")
suspend fun getUldWithConsumeWeight(@Query("uld") uld: String): BaseResultBean<GjcUldUseBean>
/**
* 国际出港组装 - 卸货
* 接口路径: /IntExpAssemble/drop
* @param data 请求参数abPc组装件数、abWeight组装重量、consumeWeight耗材重量
* ldId组装人、loadArea组装区、useInfoULD信息、wbInfo运单信息、userId用户ID
*/
@POST("IntExpAssemble/drop")
suspend fun assembleDropCargo(@Body data: RequestBody): BaseResultBean<GjcWarehouse>
/**
* 国际出港组装 - 装货
* 接口路径: /IntExpAssemble/assemble
* @param data 请求参数abPc组装件数、abWeight组装重量、consumeWeight耗材重量
* ldId组装人、loadArea组装区、useInfoULD信息、wbInfo运单信息、userId用户ID
*/
@POST("IntExpAssemble/assemble")
suspend fun assembleLoadCargo(@Body data: RequestBody): BaseResultBean<GjcWarehouse>
/**
* 国际出港出库交接-分页查询
* 接口路径: /IntExpOutHandover/pageQuery