feat: opt 出港查询-修改

This commit is contained in:
2026-01-07 19:05:21 +08:00
parent ff1c69f1dd
commit 774ba91aad
10 changed files with 260 additions and 35 deletions

View File

@@ -41,7 +41,7 @@ import me.jessyan.autosize.internal.CustomAdapt
* ========== 开发调试开关 ==========
* TODO: 正式发布前务必设置为 false
*/
private const val DEV_AUTO_LOGIN = false // 自动登录开关
private const val DEV_AUTO_LOGIN = true // 自动登录开关
@Route(path = ARouterConstants.ACTIVITY_URL_LOGIN)
class LoginActivity : BaseActivity(),

View File

@@ -105,12 +105,17 @@ data class GjcMaWb(
var activeId: Long? = null, // 有效值
// ==================== 关联列表(非数据库字段,用于展示) ====================
@Transient
var haWbList: List<GjcHaWb>? = null, // 分单列表
@Transient
var storageUseList: List<GjcStorageUse>? = null, // 库位使用列表
@Transient
var attachList: List<ComAttach>? = null // 附件列表
) {
// ==================== UI扩展字段 ====================
@Transient
val checked: ObservableBoolean = ObservableBoolean(false) // 选中状态
@Transient
val showMore: ObservableBoolean = ObservableBoolean(false) // 展开状态
// 兼容现有API的isSelected属性
@@ -222,6 +227,7 @@ data class GjcHaWb(
var activeId: Long? = null // 活动ID
) {
// ==================== UI扩展字段 ====================
@Transient
val checked: ObservableBoolean = ObservableBoolean(false) // 选中状态
// 兼容现有API的isSelected属性

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB