feat(client): 库存商品抽屉增加供应商与批次号信息行(两端,原型同步)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-07-14 09:40:16 +08:00
parent 7a9f480ae3
commit 7e020a04b3
4 changed files with 26 additions and 4 deletions
@@ -129,6 +129,8 @@ class _InventoryListScreenState extends ConsumerState<InventoryListScreen> {
status: _statusOf(item),
inventoryId: item.id,
inventoryStatus: item.status,
supplier: item.supplierName.isEmpty ? null : item.supplierName,
batchNo: item.batchNo.isEmpty ? null : item.batchNo,
onStatusChanged: () =>
ref.read(inventoryListProvider.notifier).reload(),
);