fix: 图片控件优化及多处字段修正

- 图片选择控件:加号按钮灰色背景、label 样式统一、图片区域并入表单卡片
- 国内进港移交:修复图片上传未提交 bug,从 adapter 实时获取图片列表
- 国内进港移库列表:添加右侧箭头,已出库禁止编辑
- 国际事故签证列表:修正 Bean 字段名匹配 API(dep/dest/pc/weight/dpc)
- 国际进港舱单:实到件数、计费重量、品名(中) 设为必填

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-26 13:37:47 +08:00
parent 9e0a26f3bc
commit da5137887c
12 changed files with 155 additions and 127 deletions

View File

@@ -34,6 +34,7 @@ class GnjYiKuBean : ICheck {
var businessType: String = "" // 业务类型
var opDate: String = "" // 操作日期
var carrier: String = "" // 承运人
var pickFlag: String = "" // 出库标志1=已出库)
// 多选状态绑定
val checked = ObservableBoolean(false)

View File

@@ -6,12 +6,12 @@ class IntImpAccidentVisaBean {
var id: Long = 0
var fdate: String = "" // 航班日期
var fno: String = "" // 航班号
var fdep: String = "" // 始发站
var fdest: String = "" // 目的站
var dep: String = "" // 始发站
var dest: String = "" // 目的站
var wbNo: String = "" // 运单号
var totalPc: Int = 0 // 运单总件数
var totalWeight: Double = 0.0 // 运单总重量
var abnPc: Int = 0 // 不正常件数
var pc: Int = 0 // 运单总件数
var weight: Double = 0.0 // 运单总重量
var dpc: Int = 0 // 不正常件数
var opId: String = "" // 经办人
var opdate: String = "" // 经办时间

View File

@@ -13,7 +13,7 @@
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:background="@color/white">
android:background="@{bean.path.length() == 0 ? @color/color_f2 : @color/white}">
<ImageView
visible="@{bean.path.length() == 0}"