index.tsx 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. import Authorization from '@/components/Authorization'
  2. import DatePicker from '@/components/DatePicker'
  3. import { contractReturnStore, tenderStore } from '@/store/mobx'
  4. import { iModalCommonProps } from '@/types/contract'
  5. import consts from '@/utils/consts'
  6. import { dayjsFormat, handleAutoCode } from '@/utils/util'
  7. import { Button, Form, Input, Modal, Select } from 'antd'
  8. import locale from 'antd/es/date-picker/locale/zh_CN'
  9. import dayjs from 'dayjs'
  10. import React, { useEffect, useState } from 'react'
  11. import { apiGetReturnWay } from '../Tabs/Receivable/api'
  12. import styles from './index.module.scss'
  13. const ContractModal: React.FC<iModalCommonProps> = ({ modalObj: { type, visible, confirmLoading }, onConfirm, onCancel, reload, row }) => {
  14. const { Option } = Select
  15. const [ form ] = Form.useForm()
  16. const [ options, setOptions ] = useState<string[]>([])
  17. const modalObj = {
  18. create: {
  19. title: '新建合同',
  20. cancelText: '取消',
  21. okText: '确认添加'
  22. },
  23. update: {
  24. title: '编辑合同',
  25. cancelText: '取消',
  26. okText: '确认'
  27. },
  28. close: {
  29. title: '关闭合同',
  30. cancelText: '取消',
  31. okText: '确认关闭'
  32. },
  33. del: {
  34. title: '删除合同',
  35. cancelText: '取消',
  36. okText: '确认删除'
  37. },
  38. unlock: {
  39. title: '解锁合同',
  40. cancelText: '取消',
  41. okText: '确认解锁'
  42. },
  43. return: {
  44. title: '添加回款',
  45. cancelText: '关闭',
  46. okText: '确认'
  47. }
  48. }
  49. useEffect(() => {
  50. if (visible) {
  51. form.setFieldsValue({ treeId: row.id, bidsectionId: row.bidsectionId })
  52. if (type === 'update') {
  53. const { content = '', name = '', price = '', partyA = '', partyB = '', partyASigner = '', partyBSigner = '', signerTime = '', remarks = '' } = contractReturnStore.contract
  54. form.setFieldsValue({ content, name, price, partyA, partyB, partyASigner, partyBSigner, signerTime: dayjs(signerTime), remarks })
  55. } else if (type === 'return') {
  56. apiGetReturnWay().then(({ code = -1, data = [] }) => {
  57. if (code === consts.RET_CODE.SUCCESS) {
  58. const options = data.map((item: string) => (
  59. <Option key={item} value={item}>
  60. {item}
  61. </Option>
  62. ))
  63. setOptions(options)
  64. }
  65. })
  66. form.setFieldsValue({ contractsId: contractReturnStore.contract.id })
  67. } else {
  68. form.setFieldsValue({ id: contractReturnStore.contract.id })
  69. }
  70. }
  71. }, [ visible ])
  72. const autoCode = async () => {
  73. const ruleArr = await handleAutoCode(tenderStore.tender.bidsectionId, 'contractReturnRule')
  74. form.setFieldsValue({ code: ruleArr.join('-') })
  75. }
  76. return (
  77. <Modal
  78. getContainer={false}
  79. visible={visible}
  80. title={modalObj[type]?.title}
  81. onCancel={onCancel}
  82. footer={
  83. <div className="pi-justify-end">
  84. {type === 'update' ? (
  85. <Authorization type="contract" auth="delete">
  86. <Button type="primary" key="delete" size="small" danger onClick={() => reload('del')}>
  87. 删除合同
  88. </Button>
  89. </Authorization>
  90. ) : null}
  91. <Button type="default" size="small" key="cancel" className="pi-btn-secondary" onClick={onCancel}>
  92. {modalObj[type]?.cancelText}
  93. </Button>
  94. <Button
  95. type="primary"
  96. size="small"
  97. key="ok"
  98. loading={confirmLoading}
  99. danger={type === 'del'}
  100. onClick={() => {
  101. form
  102. .validateFields()
  103. .then(values => {
  104. form.resetFields()
  105. if (type === 'update') {
  106. values.signerTime = dayjsFormat(values.signerTime, 'YYYY-MM-DD HH:mm:ss')
  107. }
  108. if (type === 'del') {
  109. delete values.warningText
  110. }
  111. if (type === 'return') {
  112. values.time = dayjsFormat(values.time, 'YYYY-MM-DD HH:mm:ss')
  113. }
  114. onConfirm(values, type)
  115. })
  116. .catch(info => {
  117. console.error('Validate Failed:', info)
  118. })
  119. }}>
  120. {modalObj[type]?.okText}
  121. </Button>
  122. </div>
  123. }>
  124. <Form form={form} layout="vertical" style={type === 'update' ? { maxHeight: '482px', overflowY: 'scroll', paddingRight: 5 } : { overflow: 'hidden' }}>
  125. <Form.Item name="bidsectionId" hidden>
  126. <Input />
  127. </Form.Item>
  128. <Form.Item name="treeId" label="合同劳务" hidden>
  129. <Input />
  130. </Form.Item>
  131. {type === 'create' ? (
  132. <>
  133. <Form.Item name="code" label="合同编号" rules={[ { required: true, message: '请输入合同编号' } ]} className={styles.contractFormItem}>
  134. <Input
  135. addonAfter={
  136. <span className="pi-pd-lr-11" onClick={() => autoCode()}>
  137. 自动编号
  138. </span>
  139. } />
  140. </Form.Item>
  141. <Form.Item name="name" label="合同名称" rules={[ { required: true, message: '请输入合同名称' } ]}>
  142. <Input placeholder="输入合同名称" />
  143. </Form.Item>
  144. {/* <Form.Item name="contractsType" label="合同类型" rules={[ { required: true, message: '请选择合同类型' } ]}>
  145. <Select showSearch>
  146. <Option value={1}>支出合同</Option>
  147. <Option value={2}>收入合同</Option>
  148. </Select>
  149. </Form.Item> */}
  150. <Form.Item name="price" label="合同金额" rules={[ { required: true, message: '请输入合同金额' } ]}>
  151. <Input type="number" placeholder="输入合同金额" addonAfter={<span>元</span>} />
  152. </Form.Item>
  153. </>
  154. ) : (
  155. ''
  156. )}
  157. {type === 'update' ? (
  158. <>
  159. <Form.Item name="content" label="项目内容" rules={[ { required: true, message: '请输入项目内容' } ]}>
  160. <Input />
  161. </Form.Item>
  162. <Form.Item name="name" label="合同名称" rules={[ { required: true, message: '请输入项目内容' } ]}>
  163. <Input />
  164. </Form.Item>
  165. <Form.Item name="price" label="合同金额" rules={[ { required: true, message: '请输入项目金额' } ]}>
  166. <Input />
  167. </Form.Item>
  168. <Form.Item name="partyA" label="甲方" rules={[ { required: true, message: '请输入甲方' } ]}>
  169. <Input />
  170. </Form.Item>
  171. <Form.Item name="partyASigner" label="甲方签约人" rules={[ { required: true, message: '请输入甲方签约人' } ]}>
  172. <Input />
  173. </Form.Item>
  174. <Form.Item name="partyB" label="乙方" rules={[ { required: true, message: '请输入乙方' } ]}>
  175. <Input />
  176. </Form.Item>
  177. <Form.Item name="partyBSigner" label="乙方签约人" rules={[ { required: true, message: '请输入乙方签约人' } ]}>
  178. <Input />
  179. </Form.Item>
  180. <Form.Item name="signerTime" label="合同签约日期" rules={[ { required: true, message: '请选择签约日期' } ]}>
  181. <DatePicker allowClear locale={locale} className="pi-width-100P" />
  182. </Form.Item>
  183. <Form.Item name="remarks" label="备注">
  184. <Input.TextArea maxLength={100} />
  185. </Form.Item>
  186. </>
  187. ) : (
  188. ''
  189. )}
  190. {type === 'close' ? (
  191. <>
  192. <Form.Item name="id" hidden>
  193. <Input />
  194. </Form.Item>
  195. <span>关闭后,合同将锁定,无法进行编辑、上传文件等操作。</span>
  196. </>
  197. ) : (
  198. ''
  199. )}
  200. {type === 'unlock' ? (
  201. <>
  202. <Form.Item name="id" hidden>
  203. <Input />
  204. </Form.Item>
  205. <span>解锁后,合同将锁定,无法进行编辑、上传文件等操作。</span>
  206. </>
  207. ) : (
  208. ''
  209. )}
  210. {type === 'del' ? (
  211. <>
  212. <Form.Item name="id" hidden>
  213. <Input />
  214. </Form.Item>
  215. <p className="mb-2">删除后,数据无法恢复,请谨慎操作。</p>
  216. <p className="mb-2">
  217. 请在下方文本框输入文本「<span className="pi-red">确认删除本合同</span>」,以此确认删除操作。
  218. </p>
  219. <Form.Item
  220. name="warningText"
  221. rules={[
  222. () => ({
  223. validator(rule, value) {
  224. if (!value || value !== '确认删除本合同') {
  225. return Promise.reject('请按照提示信息进行删除操作!')
  226. }
  227. return Promise.resolve()
  228. }
  229. })
  230. ]}>
  231. <Input placeholder="输入文本, 确认删除" />
  232. </Form.Item>
  233. </>
  234. ) : (
  235. ''
  236. )}
  237. {type === 'return' ? (
  238. <>
  239. <Form.Item name="contractsId" hidden>
  240. <Input />
  241. </Form.Item>
  242. <Form.Item name="time" label="回款日期" rules={[ { required: true, message: '请选择回款日期' } ]}>
  243. <DatePicker allowClear locale={locale} className="pi-width-100P" />
  244. </Form.Item>
  245. <Form.Item name="price" label="回款金额" rules={[ { required: true, message: '请选择回款金额' } ]}>
  246. <Input />
  247. </Form.Item>
  248. <Form.Item name="way" label="支付方式" rules={[ { required: true, message: '请选择回款方式' } ]}>
  249. <Select>{options}</Select>
  250. </Form.Item>
  251. <Form.Item name="remarks" label="备注">
  252. <Input.TextArea maxLength={100} />
  253. </Form.Item>
  254. </>
  255. ) : (
  256. ''
  257. )}
  258. </Form>
  259. </Modal>
  260. )
  261. }
  262. export default ContractModal