feat: 国际进港舱单列表 REF 绿色高亮及装机单库位号字段修正

- 舱单列表项 REF=1 时显示浅绿色背景,展开按钮同步变为黑色
- 装机单列表库位号取值改为 locationTally 字段
- GjjManifest 新增 locationTally 字段

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 17:33:44 +08:00
parent 6d2a79a639
commit 471c81bdc7
5 changed files with 17 additions and 3 deletions

View File

@@ -54,7 +54,8 @@ data class GjjManifest(
var splitFlag: String = "", // 分批标志
var subCode: String = "", // 子代码
var unNumber: String = "", // 危险品编号
var activeId: Long = 0 // 活动ID
var activeId: Long = 0, // 活动ID
var locationTally: String = "" // 理货库位号
) : Serializable {
// 分单列表
var haWbList: List<GjjHaWb>? = null

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="8dp" />
<solid android:color="#A5D6A7" />
</shape>