15.07.2025.16:44
This commit is contained in:
parent
b8c2eff7b2
commit
6c0ade74e1
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
||||
node_modules/
|
||||
*/node_modules/
|
||||
*/build/
|
||||
|
||||
**/node_modules/
|
||||
**/build/
|
||||
.DS_Store
|
||||
.env
|
||||
File diff suppressed because one or more lines are too long
1
frontend/json/runtimeError.json
Normal file
1
frontend/json/runtimeError.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
||||
@ -34,10 +34,12 @@ import moment from 'moment';
|
||||
|
||||
const initialValues = {
|
||||
client_name: '',
|
||||
|
||||
system_type: '',
|
||||
|
||||
custom_options: [],
|
||||
rfqnumber: '',
|
||||
client_address: '',
|
||||
status: 'draft',
|
||||
locations: [],
|
||||
};
|
||||
|
||||
const RfqsNew = () => {
|
||||
@ -84,6 +86,38 @@ const RfqsNew = () => {
|
||||
component={SelectFieldMany}
|
||||
></Field>
|
||||
</FormField>
|
||||
<FormField label='RFQ Number'>
|
||||
<Field name='rfqnumber' type='number' placeholder='RFQ Number' />
|
||||
</FormField>
|
||||
|
||||
<FormField label='Client Address'>
|
||||
<Field name='client_address' placeholder='Client Address' />
|
||||
</FormField>
|
||||
|
||||
<FormField label='Status' labelFor='status'>
|
||||
<Field
|
||||
name='status'
|
||||
id='status'
|
||||
component={SelectField}
|
||||
options={[
|
||||
{ value: 'draft', label: 'Draft' },
|
||||
{ value: 'in_progress', label: 'In Progress' },
|
||||
{ value: 'submitted', label: 'Submitted' },
|
||||
]}
|
||||
/>
|
||||
</FormField>
|
||||
|
||||
<FormField label='Locations' labelFor='locations'>
|
||||
<Field
|
||||
name='locations'
|
||||
id='locations'
|
||||
itemRef={'rfq_locations'}
|
||||
options={[]}
|
||||
component={SelectFieldMany}
|
||||
/>
|
||||
</FormField>
|
||||
|
||||
|
||||
|
||||
<BaseDivider />
|
||||
<BaseButtons>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user