fix: 国际进港仓库列表件数改取 pcLabel 字段

分页接口新增 pcLabel 字段(如 0/8),用于展示已入库/总件数,
列表项件数由 pc 改为优先显示 pcLabel,缺失时回退 pc。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-09-08 20:04:01 +08:00
parent fcb247c3f5
commit b368efa827
2 changed files with 2 additions and 1 deletions

View File

@@ -147,7 +147,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{String.valueOf(bean.pc)}"
android:text="@{bean.pcLabel ?? String.valueOf(bean.pc)}"
android:textSize="15sp" />
</LinearLayout>