fix: 国际进港分单编辑主分校验使用总件数,并加大件数与重量间距

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 17:43:34 +08:00
parent 471c81bdc7
commit 56945f8488
2 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ class IntImpManifestSubEditActivity :
Intent(context, IntImpManifestSubEditActivity::class.java) Intent(context, IntImpManifestSubEditActivity::class.java)
.putExtra(Constant.Key.PAGE_TYPE, DetailsPageType.Add.name) .putExtra(Constant.Key.PAGE_TYPE, DetailsPageType.Add.name)
.putExtra(Constant.Key.BEAN, manifest) .putExtra(Constant.Key.BEAN, manifest)
.putExtra(KEY_MAIN_PC, manifest.pc) .putExtra(KEY_MAIN_PC, manifest.totalPc)
.putExtra(KEY_MAIN_WEIGHT, manifest.weight) .putExtra(KEY_MAIN_WEIGHT, manifest.weight)
.putExtra(KEY_OTHER_SUB_PC, otherSubPc) .putExtra(KEY_OTHER_SUB_PC, otherSubPc)
.putExtra(KEY_OTHER_SUB_WEIGHT, otherSubWeight) .putExtra(KEY_OTHER_SUB_WEIGHT, otherSubWeight)
@@ -70,7 +70,7 @@ class IntImpManifestSubEditActivity :
.putExtra(Constant.Key.PAGE_TYPE, DetailsPageType.Modify.name) .putExtra(Constant.Key.PAGE_TYPE, DetailsPageType.Modify.name)
.putExtra(Constant.Key.BEAN, manifest) .putExtra(Constant.Key.BEAN, manifest)
.putExtra("haWb", haWb) .putExtra("haWb", haWb)
.putExtra(KEY_MAIN_PC, manifest.pc) .putExtra(KEY_MAIN_PC, manifest.totalPc)
.putExtra(KEY_MAIN_WEIGHT, manifest.weight) .putExtra(KEY_MAIN_WEIGHT, manifest.weight)
.putExtra(KEY_OTHER_SUB_PC, otherSubPc) .putExtra(KEY_OTHER_SUB_PC, otherSubPc)
.putExtra(KEY_OTHER_SUB_WEIGHT, otherSubWeight) .putExtra(KEY_OTHER_SUB_WEIGHT, otherSubWeight)