SubOrderProfile.js 10 KB

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