SubOrderProfile.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. import React, { Component } from 'react';
  2. import { connect } from 'dva';
  3. import { routerRedux } from 'dva/router';
  4. import queryString from 'query-string';
  5. import { Card, Form, Modal, Steps, Button, Table, Input, Icon } from 'antd';
  6. import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
  7. import FooterToolbar from '../../../components/FooterToolbar';
  8. import { Codes, productType } from '../../../utils/config';
  9. import { provCodeToName } from '../../../utils/city';
  10. @connect(state => ({ orderDetail: state.orderDetail }))
  11. @Form.create()
  12. export default class SubOrderProfile extends Component {
  13. /**
  14. * 返回订单列表
  15. */
  16. handlePageCancel = () => {
  17. const { filters, dispatch } = this.props;
  18. dispatch(routerRedux.push({
  19. pathname: '/trade/order',
  20. search: queryString.stringify(filters),
  21. }));
  22. }
  23. /**
  24. * 显示发货弹框
  25. */
  26. showSendModal = () => {
  27. this.props.dispatch({
  28. type: 'orderDetail/showDeliveryModal',
  29. });
  30. }
  31. /**
  32. * 隐藏发货弹框
  33. */
  34. hideSendModal = () => {
  35. this.props.dispatch({
  36. type: 'orderDetail/hideDeliveryModal',
  37. });
  38. this.props.form.resetFields();
  39. }
  40. /**
  41. * 点击确认发货
  42. */
  43. confirmSend = () => {
  44. const { dispatch, form, orderDetail } = this.props;
  45. const { validateFields, getFieldsValue } = form;
  46. const { currentItem, filters } = orderDetail;
  47. const { id } = currentItem;
  48. validateFields((errors) => {
  49. if (!errors) {
  50. const { trackNo } = getFieldsValue();
  51. dispatch({
  52. type: 'orderDetail/orderSend',
  53. payload: { id, trackNo },
  54. callback: () => dispatch(routerRedux.push({
  55. pathname: `/trade/order/sub/profile/${id}`,
  56. search: queryString.stringify(filters),
  57. })),
  58. });
  59. }
  60. });
  61. }
  62. /**
  63. * 点击确认收货
  64. */
  65. confirmReceipt = () => {
  66. Modal.confirm({
  67. title: '是否确认收货?',
  68. okText: '确定',
  69. cancelText: '取消',
  70. onOk: () => {
  71. const { dispatch, orderDetail } = this.props;
  72. const { currentItem, filters } = orderDetail;
  73. const { id } = currentItem;
  74. dispatch({
  75. type: 'orderDetail/orderReceive',
  76. payload: { id },
  77. callback: () => dispatch(routerRedux.push({
  78. pathname: `/trade/order/sub/profile/${id}`,
  79. search: queryString.stringify(filters),
  80. })),
  81. });
  82. },
  83. });
  84. }
  85. /**
  86. * 根据订单状态来生成操作按钮
  87. */
  88. renderFooter = (status) => {
  89. switch (status) {
  90. // 待发货订单
  91. case Codes.CODE_FORSEND:
  92. return (
  93. <FooterToolbar>
  94. <Button onClick={this.handlePageCancel}>返回订单列表</Button>
  95. <Button onClick={this.showSendModal} type="primary">立即发货</Button>
  96. </FooterToolbar>
  97. );
  98. // 待收货订单
  99. case Codes.CODE_SENT:
  100. return (
  101. <FooterToolbar>
  102. <Button onClick={this.handlePageCancel}>返回订单列表</Button>
  103. <Button onClick={this.confirmReceipt} type="primary">确认收货</Button>
  104. </FooterToolbar>
  105. );
  106. // 已完成订单
  107. case Codes.CODE_COMPLETE:
  108. return (
  109. <FooterToolbar>
  110. <Button onClick={this.handlePageCancel}>返回订单列表</Button>
  111. </FooterToolbar>
  112. );
  113. // 已取消订单
  114. case Codes.CODE_CANCEL:
  115. return (
  116. <FooterToolbar>
  117. <Button onClick={this.handlePageCancel}>返回订单列表</Button>
  118. </FooterToolbar>
  119. );
  120. default:
  121. return (
  122. <FooterToolbar>
  123. <Button onClick={this.handlePageCancel}>返回订单列表</Button>
  124. </FooterToolbar>
  125. );
  126. }
  127. }
  128. render() {
  129. const { orderDetail, form } = this.props;
  130. const { getFieldDecorator } = form;
  131. const { currentItem, deliveryModalShow } = orderDetail;
  132. const {
  133. userCode,
  134. provinceCode,
  135. cityName,
  136. zoneName,
  137. classroomName,
  138. orderStatus,
  139. merchantName,
  140. // originPrice,
  141. // finalPrice,
  142. // adjustPrice,
  143. name,
  144. type,
  145. mobile,
  146. address,
  147. note,
  148. trackNo,
  149. goods,
  150. } = currentItem;
  151. // simply table columns
  152. const simplyTableColumns = [{
  153. title: 'field',
  154. dataIndex: 'field',
  155. key: 1,
  156. width: '20%',
  157. }, {
  158. title: 'value',
  159. dataIndex: 'value',
  160. key: 2,
  161. width: '80%',
  162. }];
  163. // 收货人信息 - table data
  164. const consumerInfoTableData = [{
  165. field: '购买终端编号',
  166. value: userCode,
  167. key: 1,
  168. }, {
  169. field: '购买终端名称',
  170. value: `${classroomName}`,
  171. key: 2,
  172. }, {
  173. field: '终端所属校区',
  174. value: `${provCodeToName(provinceCode)}-${cityName}-${zoneName}`,
  175. key: 3,
  176. }, {
  177. field: '终端所属渠道',
  178. value: merchantName,
  179. key: 4,
  180. }, {
  181. field: '收货人姓名',
  182. value: name,
  183. key: 5,
  184. }, {
  185. field: '收货人电话',
  186. value: mobile,
  187. key: 6,
  188. }, {
  189. field: '收货地址',
  190. value: address,
  191. key: 7,
  192. }];
  193. // 物流信息 - table datas
  194. const deliveryTableData = [{
  195. field: '物流单号',
  196. value: trackNo,
  197. key: 1,
  198. }];
  199. // 商品清单
  200. const goodsTableColumns = [{
  201. title: '商品编号',
  202. dataIndex: 'code',
  203. key: 1,
  204. width: '25%',
  205. }, {
  206. title: '商品名称',
  207. dataIndex: 'name',
  208. key: 2,
  209. width: '25%',
  210. }, {
  211. title: '商品类型',
  212. dataIndex: 'type',
  213. render: text => productType[text],
  214. key: 3,
  215. width: '15%',
  216. }, {
  217. title: '商品售价(元)',
  218. dataIndex: 'merchantPrice',
  219. key: 4,
  220. width: '25%',
  221. }, {
  222. title: '商品数量',
  223. dataIndex: 'quantity',
  224. key: 5,
  225. width: '10%',
  226. }];
  227. // 结算信息 - table data
  228. /*
  229. const strs = [];
  230. (goods || []).forEach(item => strs.push(`${item.merchantPrice}(元) * ${item.quantity}`));
  231. const accountTableDatas = [{
  232. field: '商品总价',
  233. value: `${strs.join(' + ')} = ${originPrice}(元)`,
  234. key: 1,
  235. }, {
  236. field: '支付金额',
  237. value:
  238. <span>
  239. {`总价:${originPrice}(元) - 商品优惠:${adjustPrice}(元) = 订单总金额:`}
  240. <strong style={{ color: 'red' }}>{`${finalPrice}(元)`}</strong>
  241. </span>,
  242. key: 2,
  243. }];
  244. */
  245. const entityStepMap = {
  246. [Codes.CODE_UNPAID]: 0,
  247. [Codes.CODE_PAID]: 1,
  248. [Codes.CODE_FORSEND]: 1,
  249. [Codes.CODE_SENT]: 2,
  250. [Codes.CODE_RECEIVED]: 3,
  251. [Codes.CODE_CANCEL]: 4,
  252. [Codes.CODE_COMPLETE]: 4,
  253. };
  254. const virtualStepMap = {
  255. [Codes.CODE_UNPAID]: 0,
  256. [Codes.CODE_PAID]: 1,
  257. [Codes.CODE_FORSEND]: 1,
  258. [Codes.CODE_SENT]: 1,
  259. [Codes.CODE_RECEIVED]: 1,
  260. [Codes.CODE_CANCEL]: 4,
  261. [Codes.CODE_COMPLETE]: 4,
  262. };
  263. const formItemLayout = {
  264. labelCol: { span: 7 },
  265. wrapperCol: { span: 15 },
  266. };
  267. return (
  268. <PageHeaderLayout title="子订单详情">
  269. {type === Codes.CODE_ENTITY ?
  270. (
  271. <Card title="订单状态" bordered={false} style={{ marginBottom: 20 }}>
  272. <Steps current={entityStepMap[orderStatus]}>
  273. <Steps.Step title="提交订单" icon={<Icon type="schedule" />} />
  274. <Steps.Step title="付款成功" icon={<Icon type="red-envelope" />} />
  275. <Steps.Step title="商品出库" icon={<Icon type="inbox" />} />
  276. <Steps.Step title="等待收货" icon={<Icon type="rocket" />} />
  277. <Steps.Step title="完成" icon={<Icon type="check" />} />
  278. </Steps>
  279. </Card>
  280. )
  281. :
  282. (
  283. <Card title="订单状态" bordered={false} style={{ marginBottom: 20 }}>
  284. <Steps current={virtualStepMap[orderStatus]}>
  285. <Steps.Step title="提交订单" icon={<Icon type="schedule" />} />
  286. <Steps.Step title="付款成功" icon={<Icon type="red-envelope" />} />
  287. <Steps.Step title="完成" icon={<Icon type="check" />} />
  288. </Steps>
  289. </Card>
  290. )
  291. }
  292. <Card title="商品清单" bordered={false} style={{ marginBottom: 20 }}>
  293. <Table
  294. size="small"
  295. rowKey={record => record.id}
  296. columns={goodsTableColumns}
  297. dataSource={goods || []}
  298. bordered
  299. pagination={false}
  300. />
  301. </Card>
  302. <Card title="收货人信息" bordered={false} style={{ marginBottom: 20 }}>
  303. <Table
  304. size="small"
  305. columns={simplyTableColumns}
  306. dataSource={consumerInfoTableData}
  307. bordered
  308. pagination={false}
  309. showHeader={false}
  310. />
  311. </Card>
  312. {orderStatus === Codes.CODE_SENT ?
  313. (
  314. <Card title="物流信息" bordered={false} style={{ marginBottom: 20 }}>
  315. <Table
  316. size="small"
  317. columns={simplyTableColumns}
  318. dataSource={deliveryTableData}
  319. bordered
  320. pagination={false}
  321. showHeader={false}
  322. />
  323. </Card>
  324. ) : null}
  325. <Card title="订单备注" bordered={false} style={{ marginBottom: 20 }}>
  326. {note || '无'}
  327. </Card>
  328. {/* <Card title="结算信息" bordered={false}>
  329. <Table
  330. size="small"
  331. columns={simplyTableColumns}
  332. dataSource={accountTableDatas}
  333. bordered
  334. pagination={false}
  335. showHeader={false}
  336. />
  337. </Card> */}
  338. <Modal
  339. title="发货信息"
  340. visible={deliveryModalShow}
  341. onOk={this.confirmSend}
  342. onCancel={this.hideSendModal}
  343. >
  344. <Form layout="horizontal">
  345. <Form.Item label="物流单号:" hasFeedback {...formItemLayout}>
  346. {getFieldDecorator('trackNo', {
  347. rules: [{ required: true, type: 'string', message: '请填写正确的物流单号!' }],
  348. })(<Input placeholder="请填写物流单号" />)}
  349. </Form.Item>
  350. </Form>
  351. </Modal>
  352. {this.renderFooter(orderStatus)}
  353. </PageHeaderLayout>
  354. );
  355. }
  356. }