feat: 出港组装 开始组装 卸货、装货 api
This commit is contained in:
@@ -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("-", "")}"
|
||||
|
||||
@@ -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(组装区)、useInfo(ULD信息)、wbInfo(运单信息)、userId(用户ID)
|
||||
*/
|
||||
@POST("IntExpAssemble/drop")
|
||||
suspend fun assembleDropCargo(@Body data: RequestBody): BaseResultBean<GjcWarehouse>
|
||||
|
||||
/**
|
||||
* 国际出港组装 - 装货
|
||||
* 接口路径: /IntExpAssemble/assemble
|
||||
* @param data 请求参数:abPc(组装件数)、abWeight(组装重量)、consumeWeight(耗材重量)、
|
||||
* ldId(组装人)、loadArea(组装区)、useInfo(ULD信息)、wbInfo(运单信息)、userId(用户ID)
|
||||
*/
|
||||
@POST("IntExpAssemble/assemble")
|
||||
suspend fun assembleLoadCargo(@Body data: RequestBody): BaseResultBean<GjcWarehouse>
|
||||
|
||||
/**
|
||||
* 国际出港出库交接-分页查询
|
||||
* 接口路径: /IntExpOutHandover/pageQuery
|
||||
|
||||
Reference in New Issue
Block a user