-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathInvoiceForm.jsx
258 lines (242 loc) · 8.21 KB
/
InvoiceForm.jsx
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
import { useState, useEffect, useRef } from 'react';
import dayjs from 'dayjs';
import { Form, Input, InputNumber, Button, Select, Divider, Row, Col } from 'antd';
import { PlusOutlined } from '@ant-design/icons';
import { DatePicker } from 'antd';
import AutoCompleteAsync from '@/components/AutoCompleteAsync';
import ItemRow from '@/modules/ErpPanelModule/ItemRow';
import MoneyInputFormItem from '@/components/MoneyInputFormItem';
import { selectFinanceSettings } from '@/redux/settings/selectors';
import { useDate } from '@/settings';
import useLanguage from '@/locale/useLanguage';
import calculate from '@/utils/calculate';
import { useSelector } from 'react-redux';
import SelectAsync from '@/components/SelectAsync';
export default function InvoiceForm({ subTotal = 0, current = null }) {
const { last_invoice_number } = useSelector(selectFinanceSettings);
if (last_invoice_number === undefined) {
return <></>;
}
return <LoadInvoiceForm subTotal={subTotal} current={current} />;
}
function LoadInvoiceForm({ subTotal = 0, current = null }) {
const translate = useLanguage();
const { dateFormat } = useDate();
const { last_invoice_number } = useSelector(selectFinanceSettings);
const [total, setTotal] = useState(0);
const [taxRate, setTaxRate] = useState(0);
const [taxTotal, setTaxTotal] = useState(0);
const [currentYear, setCurrentYear] = useState(() => new Date().getFullYear());
const [lastNumber, setLastNumber] = useState(() => last_invoice_number + 1);
const handelTaxChange = (value) => {
setTaxRate(value / 100);
};
useEffect(() => {
if (current) {
const { taxRate = 0, year, number } = current;
setTaxRate(taxRate / 100);
setCurrentYear(year);
setLastNumber(number);
}
}, [current]);
useEffect(() => {
const currentTotal = calculate.add(calculate.multiply(subTotal, taxRate), subTotal);
setTaxTotal(Number.parseFloat(calculate.multiply(subTotal, taxRate)));
setTotal(Number.parseFloat(currentTotal));
}, [subTotal, taxRate]);
const addField = useRef(false);
useEffect(() => {
addField.current.click();
}, []);
const sm = 576;
const md = 768;
const lg = 992;
return (
<>
<Row gutter={[12, 0]}>
<Col className="gutter-row" xs={24} sm={12} md={8}>
<Form.Item
name="client"
label={translate('Client')}
rules={[{ required: true }]}
>
<AutoCompleteAsync
entity={'client'}
displayLabels={['name']}
searchFields={'name'}
redirectLabel={'Add New Client'}
withRedirect
urlToRedirect={'/customer'}
/>
</Form.Item>
</Col>
<Col className="gutter-row" xs={24} sm={12} md={3}>
<Form.Item
label={translate('number')}
name="number"
initialValue={lastNumber}
rules={[{ required: true }]}
>
<InputNumber min={1} style={{ width: '100%' }} />
</Form.Item>
</Col>
<Col className="gutter-row" xs={24} sm={12} md={3}>
<Form.Item
label={translate('year')}
name="year"
initialValue={currentYear}
rules={[{ required: true }]}
>
<InputNumber style={{ width: '100%' }} />
</Form.Item>
</Col>
<Col className="gutter-row" xs={24} sm={12} md={5}>
<Form.Item
label={translate('status')}
name="status"
initialValue={'draft'}
rules={[{ required: false }]}
>
<Select
options={[
{ value: 'draft', label: translate('Draft') },
{ value: 'pending', label: translate('Pending') },
{ value: 'sent', label: translate('Sent') },
]}
/>
</Form.Item>
</Col>
<Col className="gutter-row" xs={24} sm={12} md={8}>
<Form.Item
name="date"
label={translate('Date')}
rules={[{ required: true, type: 'object' }]}
initialValue={dayjs()}
>
<DatePicker style={{ width: '100%' }} format={dateFormat} />
</Form.Item>
</Col>
<Col className="gutter-row" xs={24} sm={12} md={6}>
<Form.Item
name="expiredDate"
label={translate('Expire Date')}
rules={[{ required: true, type: 'object' }]}
initialValue={dayjs().add(30, 'days')}
>
<DatePicker style={{ width: '100%' }} format={dateFormat} />
</Form.Item>
</Col>
<Col className="gutter-row" xs={24}>
<Form.Item label={translate('Note')} name="notes">
<Input />
</Form.Item>
</Col>
</Row>
<Divider dashed />
{/* <Row gutter={[12, 12]} style={{ position: 'relative' }}>
<Col className="gutter-row" xs={24} sm={5}>
<p>{translate('Item')}</p>
</Col>
<Col className="gutter-row" xs={24} sm={7}>
<p>{translate('Description')}</p>
</Col>
<Col className="gutter-row" xs={24} sm={3}>
<p>{translate('Quantity')}</p>
</Col>
<Col className="gutter-row" xs={24} sm={4}>
<p>{translate('Price')}</p>
</Col>
<Col className="gutter-row" xs={24} sm={5}>
<p>{translate('Total')}</p>
</Col>
</Row> */}
<Form.List name="items">
{(fields, { add, remove }) => (
<>
{fields.map((field) => (
<ItemRow key={field.key} remove={remove} field={field} current={current}></ItemRow>
))}
<Form.Item>
<Button
type="dashed"
onClick={() => add()}
block
icon={<PlusOutlined />}
ref={addField}
>
{translate('Add field')}
</Button>
</Form.Item>
</>
)}
</Form.List>
<Divider dashed />
<div style={{ position: 'relative', width: '100%', float: 'right' }}>
<Row gutter={[12, -5]}>
<Col className="gutter-row" xs={24} sm={5}>
<Form.Item>
<Button type="primary" htmlType="submit" icon={<PlusOutlined />} block>
{translate('Save')}
</Button>
</Form.Item>
</Col>
<Col className="gutter-row" xs={24} sm={4} offset={sm ? 10 : 0}>
<p
style={{
paddingLeft: '12px',
paddingTop: '5px',
margin: 0,
textAlign: 'right',
}}
>
{translate('Sub Total')} :
</p>
</Col>
<Col className="gutter-row" xs={24} sm={5}>
<MoneyInputFormItem readOnly value={subTotal} />
</Col>
</Row>
<Row gutter={[12, -5]}>
<Col className="gutter-row" xs={24} sm={4} offset={sm ? 15 : 0}>
<Form.Item
name="taxRate"
rules={[{ required: true }]}
>
<SelectAsync
value={taxRate}
onChange={handelTaxChange}
entity={'taxes'}
outputValue={'taxValue'}
displayLabels={['taxName']}
withRedirect={true}
urlToRedirect="/taxes"
redirectLabel={translate('Add New Tax')}
placeholder={translate('Select Tax Value')}
/>
</Form.Item>
</Col>
<Col className="gutter-row" xs={24} sm={5}>
<MoneyInputFormItem readOnly value={taxTotal} />
</Col>
</Row>
<Row gutter={[12, -5]}>
<Col className="gutter-row" xs={24} sm={4} offset={sm ? 15 : 0}>
<p
style={{
paddingLeft: '12px',
paddingTop: '5px',
margin: 0,
textAlign: 'right',
}}
>
{translate('Total')} :
</p>
</Col>
<Col className="gutter-row" xs={24} sm={5}>
<MoneyInputFormItem readOnly value={total} />
</Col>
</Row>
</div>
</>
);
}