-
Notifications
You must be signed in to change notification settings - Fork 0
/
plan.txt
68 lines (53 loc) · 1.56 KB
/
plan.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Planning:
Dashboard in Inventory Management
**MVP:
- User can:
- Auth:
- login
- logout
- Profile details:
- Name
- Email
- Tel-extension
- Department
- Roles: [Product Manager, Finance Manager...]
- Line Manager
- Organization Chart:
- PIC (person in charge) for each department
- Objectives (daily task, monthly targets)
- Production:
- CRUD Products
- CRUD Products
- (bonus)Show dashboards
- Can CRUD dashboards ( MVP just show pictures of charts or dashboards)
- Can choose different chart options (pie chart, bar chart, line chart....)
- (bonus) use API from google calendar to integrate meeting set up
- (bonus) search people in org and set meeting
**Models:
1. Users:
- Name: string - required
- Email: string - required
- Tel-extension: string
- Department: string - enum - required
- Roles: string - enum - required: [Product Manager, Finance Manager...]
- Line Manager: ref: "User" (?? - can we )
2. Product:
- productName: string - required - unique,
- stock: number - required
- productionCost: number - required
- img: string
- storageLocation: {
row:
lane:
shelf:
}
- category (department....)
- keywords []
- manufacturer
3. (bonus) Orders:
- Items: [{
- ref: "Product" - required -
- Qty: number - required
}]
- Options to customize product model
Middleware for blocking routes based on role