| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import {Card, Space} from 'antd';
- import {FC} from 'react';
- import {useParams} from 'react-router-dom';
- import {useFormState} from './hooks';
- import Field from './field';
- import {ModalBtnGroup} from '@components';
- import Select from './select';
- import {useDictionaryOptions, useStorageOptions} from '@hooks';
- const StockOperation: FC = function() {
- const {type} = useParams<{type: 'in' | 'out'}>();
- const [{control}, {onSubmit}] = useFormState();
- const options = useDictionaryOptions('物料字典');
- const locationOptions = useStorageOptions();
- return (
- <section className='content-main'>
- <Card title={type === 'in' ? '其他入库' : '其他出库'}>
- <form onSubmit={onSubmit}>
- <Space direction='vertical'>
- <Select
- control={control}
- label='物料'
- name='materialCode'
- data={options}
- />
- <Select
- control={control}
- label='所在仓库'
- name='locationCode'
- data={locationOptions}
- />
- <Field
- control={control}
- label={type === 'in' ? '入库数量' : '出库数量'}
- name='operationNum'
- type='number'
- />
- <Field
- control={control}
- label='wbs编号'
- name='wbsCode'
- required={false}
- />
- <ModalBtnGroup />
- </Space>
- </form>
- </Card>
- </section>
- );
- };
- export default StockOperation;
|