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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
/* OpenBills-web - Web based libre billing software
* Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { Item, saveItem } from './../../classes/item'
import { Brand, getAllBrands } from './../../classes/brand'
import './scss/item-editor.scss'
import { useState, useEffect } from 'react';
const ItemEditor = (props) => {
const [name, setName] = useState("");
const [desc, setDesc] = useState("");
const [HSN, setHSN] = useState("");
const [unit, setUnit] = useState("");
const [unitPrice, setUnitPrice] = useState(0.00);
const [gstP, setGSTP] = useState(0.00);
const [minQty, setMinQty] = useState(0.00);
const [maxQty, setMaxQty] = useState(0.00);
const [brand, setBrand] = useState(new Brand());
const [savedBrands, setSavedBrands] = useState([]);
// get saved brands from API
// needed by the brands dropdown menu
useEffect(() => {
// TODO: handle error
getAllBrands(setSavedBrands, () => {});
}, [])
const handleSubmit = (e) => {
e.preventDefault();
const item = new Item();
item.Name = name;
item.Description = desc;
item.HSN = HSN;
item.UnitOfMeasure = unit;
item.UnitPrice = unitPrice;
item.GSTPercentage = gstP;
item.MinQuantity = minQty;
item.MaxQuantity = maxQty;
item.Brand = brand;
// TODO: Save is for new items. implement modification too
saveItem(item, handleSuccess, handleFail);
}
const handleSuccess = () => {
clearAll();
props.callback();
}
const handleFail = () => {
alert("fail");
}
const handleBrandSelect = (e) => {
const b = savedBrands.filter(i => i.Id === e.target.value )[0];
setBrand(b ? b : new Brand());
}
const clearAll = () => {
setName("");
setDesc("");
setHSN("");
setUnit("");
setUnitPrice(0.00);
setGSTP(0.00);
setMinQty(0.00);
setMaxQty(0.00);
setBrand(new Brand())
}
const handleCancel = () => {
// TODO: hide this component or something
clearAll();
}
const validateFloatInput = (e, callback) => {
const f = parseFloat(e.target.value);
f && callback(f)
}
return (
<div className={"editor-wrapper"}>
<p>{props.heading}</p>
<form onSubmit={handleSubmit} className={"editor"}>
<label>
Product/Service:
<input
type="text" name="name"
value={name} onChange={(e) => setName(e.target.value)} />
</label>
<label>
Description:
<input
type="text" name="desc"
value={desc} onChange={(e) => setDesc(e.target.value)} />
</label>
<label>
HSN:
<input
type="text" name="hsn"
value={HSN} onChange={(e) => setHSN(e.target.value)} />
</label>
<label>
Unit of Measurement:
<input
type="text" name="unit"
value={unit} onChange={(e) => setUnit(e.target.value)} />
</label>
<label>
Unit Price:
<input
type="number" name="unitprice"
value={unitPrice} onChange={(e) => validateFloatInput(e, setUnitPrice)} />
</label>
<label>
GST %:
<input
type="number" name="gstp"
value={gstP} onChange={(e) => validateFloatInput(e, setGSTP)} />
</label>
<label>
Minimum Quantity:
<input
type="number" name="minqty"
value={minQty} onChange={(e) => validateFloatInput(e, setMinQty)} />
</label>
<label>
Maximum Quantity:
<input
type="number" name="maxqty"
value={maxQty} onChange={(e) => validateFloatInput(e, setMaxQty)} />
</label>
<label>
Brand:
<select value={brand.Id ? brand.Id : ""} onChange={handleBrandSelect}>
<option key="placeholder" value={""}>
{brand.Id == null ? "Select a Brand (optional)" : "None"}
</option>
{savedBrands.map(i => <option key={i.Id} value={i.Id}>{i.Name}</option>)}
</select>
</label>
<span className={"buttons"}>
<input type="button" value="Clear" onClick={clearAll}/>
<input type="button" value="Cancel" onClick={handleCancel}/>
<input type="submit" value="Save" />
</span>
</form>
</div>
);
}
export default ItemEditor;
|