feat: 国际进港舱单分单编辑页主分校验功能

将主分校验从接口查询改为本地实时计算,显示"分单之和/主单"格式,
超出主单时红色提示并禁止保存,品名(中)优先取goodsCn兜底取goods。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-22 18:23:02 +08:00
parent 5e1ccc9e8a
commit 78238907b0
4 changed files with 101 additions and 17 deletions

View File

@@ -72,7 +72,8 @@
title='@{"主分校验"}'
titleLength="@{5}"
type="@{DataLayoutType.INPUT}"
value='@{viewModel.mainSubCheck}' />
value='@{viewModel.mainSubCheck}'
valueTextColor="@{viewModel.isCheckValid ? @color/text_green : @color/red}" />
<com.lukouguoji.module_base.ui.weight.data.layout.PadDataLayoutNew
android:layout_width="0dp"
@@ -103,6 +104,7 @@
enable="@{true}"
hint='@{"请输入件数"}'
required="@{false}"
setRefreshCallBack="@{viewModel::onPcInputComplete}"
title='@{"件 数"}'
titleLength="@{5}"
type="@{DataLayoutType.INPUT}"
@@ -116,6 +118,7 @@
enable="@{true}"
hint='@{"请输入重量"}'
required="@{false}"
setRefreshCallBack="@{viewModel::onWeightInputComplete}"
title='@{"重 量"}'
titleLength="@{5}"
type="@{DataLayoutType.INPUT}"