feat(inventory): 開放倉庫編號編輯、優化調撥單條碼搜尋與庫存匯入範本雙分頁說明

This commit is contained in:
2026-02-06 16:36:14 +08:00
parent 200d1989bd
commit e018b75783
11 changed files with 555 additions and 20 deletions

View File

@@ -143,14 +143,15 @@ export default function WarehouseDialog({
{/* 倉庫編號 */}
<div className="space-y-2">
<Label htmlFor="code">
<span className="text-red-500">*</span>
</Label>
<Input
id="code"
value={warehouse ? formData.code : ""}
disabled={true}
placeholder={warehouse ? "" : "系統自動產生"}
className="bg-gray-100"
value={formData.code}
onChange={(e) => setFormData({ ...formData, code: e.target.value })}
placeholder="請輸入倉庫編號"
required
className="h-9"
/>
</div>