first commit
This commit is contained in:
29
source-code/ERP(A-b)-倉庫管理/src/constants/products.ts
Normal file
29
source-code/ERP(A-b)-倉庫管理/src/constants/products.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* 商品資料常數
|
||||
* 在實際應用中,這些資料應該從後端 API 獲取
|
||||
*/
|
||||
|
||||
import { Product } from "../types/warehouse";
|
||||
|
||||
export const AVAILABLE_PRODUCTS: Product[] = [
|
||||
// 原物料
|
||||
{ id: "101", name: "二砂糖", type: "原物料" },
|
||||
{ id: "102", name: "黑糖", type: "原物料" },
|
||||
{ id: "103", name: "冰糖", type: "原物料" },
|
||||
{ id: "104", name: "奶精粉", type: "原物料" },
|
||||
{ id: "105", name: "鮮奶油", type: "原物料" },
|
||||
{ id: "106", name: "紅豆(生)", type: "原物料" },
|
||||
{ id: "107", name: "綠豆(生)", type: "原物料" },
|
||||
{ id: "108", name: "芋頭(生)", type: "原物料" },
|
||||
{ id: "109", name: "地瓜(生)", type: "原物料" },
|
||||
{ id: "110", name: "仙草乾", type: "原物料" },
|
||||
|
||||
// 半成品
|
||||
{ id: "1", name: "粉粿原漿", type: "半成品" },
|
||||
{ id: "2", name: "黑糖粉圓(未加糖)", type: "半成品" },
|
||||
{ id: "3", name: "熟紅豆(未加糖)", type: "半成品" },
|
||||
{ id: "4", name: "熟綠豆(未加糖)", type: "半成品" },
|
||||
{ id: "5", name: "芋頭泥(無調味)", type: "半成品" },
|
||||
{ id: "6", name: "地瓜泥(無調味)", type: "半成品" },
|
||||
{ id: "7", name: "仙草原凍(整塊)", type: "半成品" },
|
||||
];
|
||||
Binary file not shown.
Reference in New Issue
Block a user