|
@@ -1,24 +1,40 @@
|
|
|
import React, { Component } from 'react';
|
|
|
-import { Popover, Modal, Card, List, Form, Table, Button, Input, InputNumber, Radio, Dropdown, Menu, Icon } from 'antd';
|
|
|
import { connect } from 'dva';
|
|
|
import { routerRedux } from 'dva/router';
|
|
|
+import {
|
|
|
+ Popover,
|
|
|
+ Modal,
|
|
|
+ Card,
|
|
|
+ List,
|
|
|
+ Form,
|
|
|
+ Table,
|
|
|
+ Button,
|
|
|
+ Input,
|
|
|
+ InputNumber,
|
|
|
+ Select,
|
|
|
+ Icon,
|
|
|
+} from 'antd';
|
|
|
|
|
|
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
|
import FooterToolbar from '../../../components/FooterToolbar';
|
|
|
import TerminalSelectModal from './terminal';
|
|
|
import MerchantProductSelectModal from './product';
|
|
|
-import { productType, pageSize } from '../../../utils/config';
|
|
|
+import { productType, pageSize, Codes } from '../../../utils/config';
|
|
|
import styles from './index.less';
|
|
|
|
|
|
@Form.create()
|
|
|
@connect(state => ({
|
|
|
terminal: state.terminal,
|
|
|
- orderItem: state.orderDetail,
|
|
|
+ orderDetail: state.orderDetail,
|
|
|
mproduct: state.mproduct,
|
|
|
}))
|
|
|
export default class CreateOrder extends Component {
|
|
|
+ state = {
|
|
|
+ userInfo: {}, //记录终端用户信息
|
|
|
+ products: [], //记录选择的产品
|
|
|
+ };
|
|
|
|
|
|
- // 终端选择弹框相关的回调方法
|
|
|
+ // 终端选择弹框,显示 -> 加载数据
|
|
|
handleTerminalSelectBtnClick = () => {
|
|
|
this.props.dispatch({ type: 'orderDetail/showTerminalModal' });
|
|
|
this.props.dispatch({
|
|
@@ -30,15 +46,28 @@ export default class CreateOrder extends Component {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ // 选择终端
|
|
|
handleTerminalModalOk = (record) => {
|
|
|
- this.props.dispatch({
|
|
|
- type: 'orderDetail/savePickedTerminal',
|
|
|
- payload: {
|
|
|
+ // this.props.dispatch({
|
|
|
+ // type: 'orderDetail/savePickedTerminal',
|
|
|
+ // payload: {
|
|
|
+ // userCode: record.code,
|
|
|
+ // userName: record.name,
|
|
|
+ // campusName: record.campusName,
|
|
|
+ // merchantName: record.merchantName,
|
|
|
+ // merchantId: record.merchantId,
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ this.setState({
|
|
|
+ userInfo: {
|
|
|
userCode: record.code,
|
|
|
userName: record.name,
|
|
|
campusName: record.campusName,
|
|
|
merchantName: record.merchantName,
|
|
|
merchantId: record.merchantId,
|
|
|
+ contactName: record.contactName,
|
|
|
+ mobile: record.mobile,
|
|
|
+ address: record.address,
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -55,10 +84,10 @@ export default class CreateOrder extends Component {
|
|
|
|
|
|
}
|
|
|
|
|
|
- // 产品选择弹框相关的回调方法
|
|
|
+ // 产品选择弹框
|
|
|
handleProductSelectBtnClick = () => {
|
|
|
- const { orderItem } = this.props;
|
|
|
- const { currentItem } = orderItem;
|
|
|
+ const { orderDetail } = this.props;
|
|
|
+ const { currentItem } = orderDetail;
|
|
|
const { merchantId } = currentItem;
|
|
|
this.props.dispatch({ type: 'orderDetail/showProductModal' });
|
|
|
this.props.dispatch({
|
|
@@ -79,11 +108,13 @@ export default class CreateOrder extends Component {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ // 选择产品
|
|
|
handleProductModalOk = (data) => {
|
|
|
- this.props.dispatch({
|
|
|
- type: 'orderDetail/savePickedProducts',
|
|
|
- payload: data,
|
|
|
- });
|
|
|
+ // this.props.dispatch({
|
|
|
+ // type: 'orderDetail/savePickedProducts',
|
|
|
+ // payload: data,
|
|
|
+ // });
|
|
|
+ this.setState({ products: data || [] });
|
|
|
}
|
|
|
|
|
|
handleProductModalCancel = () => {
|
|
@@ -96,76 +127,32 @@ export default class CreateOrder extends Component {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @desc 对返回的单个订单数据进行加工,方便在table中进行展示及编辑
|
|
|
+ * @param {Object}
|
|
|
+ * @return {Object}
|
|
|
+ */
|
|
|
+ renderTableList = (data) => {
|
|
|
+ const fomtProducts = data.map(item => {
|
|
|
+ if (item.contents) {
|
|
|
+ item.children = item.contents;
|
|
|
+ delete item.contents;
|
|
|
+ }
|
|
|
+ if (item.goods && item.goods.length) {
|
|
|
+ item.goods.map((goodsItem, index) => {
|
|
|
+ if (index == 0) {
|
|
|
+ item.goods[index].selected = true;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
render() {
|
|
|
- const { orderItem, terminal, mproduct, form } = this.props;
|
|
|
- const { terminalModalShow, productModalShow } = orderItem;
|
|
|
- const currentItem = {
|
|
|
- userCode: '15790324883489',
|
|
|
- userName: '教室六',
|
|
|
- campusName: '北京-北京市 西城区-科贸A座',
|
|
|
- merchantName: '贝尔安亲',
|
|
|
- merchantId: '555',
|
|
|
- products: [{
|
|
|
- id: 'p1',
|
|
|
- code: 'P-01',
|
|
|
- name: '语文一年级上册',
|
|
|
- type: 'COURSE',
|
|
|
- coverUrl: 'https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png',
|
|
|
- goods: [{
|
|
|
- id: '1',
|
|
|
- chargeUnit: '年',
|
|
|
- cpPrice: 2000,
|
|
|
- merchantPrice: 3000,
|
|
|
- terminalPrice: 4000,
|
|
|
- },{
|
|
|
- id: '2',
|
|
|
- chargeUnit: '半年',
|
|
|
- cpPrice: 1000,
|
|
|
- merchantPrice: 2000,
|
|
|
- terminalPrice: 3000,
|
|
|
- },{
|
|
|
- id: '3',
|
|
|
- chargeUnit: '季',
|
|
|
- cpPrice: 500,
|
|
|
- merchantPrice: 800,
|
|
|
- terminalPrice: 1000,
|
|
|
- }],
|
|
|
- },{
|
|
|
- id: 'package-1',
|
|
|
- code: '课程包-01',
|
|
|
- name: '小学一年级语文课程包',
|
|
|
- type: 'PACKAGE',
|
|
|
- coverUrl: 'https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png',
|
|
|
- goods: [],
|
|
|
- children: [{
|
|
|
- id: 'p1',
|
|
|
- code: 'P-01',
|
|
|
- name: '语文一年级上册',
|
|
|
- type: 'COURSE',
|
|
|
- coverUrl: 'https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png',
|
|
|
- goods: [{
|
|
|
- id: '1',
|
|
|
- chargeUnit: '年',
|
|
|
- cpPrice: 2000,
|
|
|
- merchantPrice: 3000,
|
|
|
- terminalPrice: 4000,
|
|
|
- },{
|
|
|
- id: '2',
|
|
|
- chargeUnit: '半年',
|
|
|
- cpPrice: 1000,
|
|
|
- merchantPrice: 2000,
|
|
|
- terminalPrice: 3000,
|
|
|
- },{
|
|
|
- id: '3',
|
|
|
- chargeUnit: '季',
|
|
|
- cpPrice: 500,
|
|
|
- merchantPrice: 800,
|
|
|
- terminalPrice: 1000,
|
|
|
- }],
|
|
|
- }],
|
|
|
- }],
|
|
|
- };
|
|
|
- const { userCode, userName, campusName, merchantName, merchantId, products } = currentItem;
|
|
|
+ const { orderDetail, terminal, mproduct, form } = this.props;
|
|
|
+ const { userInfo, products } = this.state;
|
|
|
+ const { getFieldDecorator } = form;
|
|
|
+ const { terminalModalShow, productModalShow } = orderDetail;
|
|
|
|
|
|
const formItemLayout = {
|
|
|
labelCol: {
|
|
@@ -181,89 +168,101 @@ export default class CreateOrder extends Component {
|
|
|
|
|
|
const columns = [{
|
|
|
title: '序号',
|
|
|
- dataIndex: 'sort',
|
|
|
- key: 0,
|
|
|
render: (text, record, index) => index + 1,
|
|
|
- },{
|
|
|
- title: '图片',
|
|
|
- dataIndex: 'coverUrl',
|
|
|
- key: 1,
|
|
|
- render: (text, record) => (
|
|
|
- <Popover
|
|
|
- content={
|
|
|
- <Card hoverable style={{ width: 250, height: 400 }} cover={<img alt="" src={text}/>}>
|
|
|
- <Card.Meta
|
|
|
- title={`${record.name}/${record.code}`}
|
|
|
- description={`类型: ${productType[record.type]}`}
|
|
|
- />
|
|
|
- </Card>
|
|
|
- }
|
|
|
- >
|
|
|
- <img src={text} width={50} />
|
|
|
- </Popover>
|
|
|
- ),
|
|
|
+ width: '6%',
|
|
|
+ key: 0,
|
|
|
},{
|
|
|
title: '编号',
|
|
|
dataIndex: 'code',
|
|
|
- key: 2,
|
|
|
+ key: 1,
|
|
|
+ width: '10%',
|
|
|
},{
|
|
|
title: '名称',
|
|
|
dataIndex: 'name',
|
|
|
- key: 3,
|
|
|
+ key: 2,
|
|
|
+ width: '10%',
|
|
|
},{
|
|
|
title: '类型',
|
|
|
dataIndex: 'type',
|
|
|
- key: 4,
|
|
|
+ key: 3,
|
|
|
render: (text) => productType[text],
|
|
|
+ width: '6%',
|
|
|
},{
|
|
|
title: '价格类型',
|
|
|
dataIndex: 'goods',
|
|
|
+ key: 4,
|
|
|
+ render: (text, record) => {
|
|
|
+ if (!record.isChild) {
|
|
|
+ return (
|
|
|
+ <Select>
|
|
|
+ {record.goods.map(item => <Select.Option key={item.id}>{`¥${item.terminalPrice} / ${item.chargeUnit}`}</Select.Option>)}
|
|
|
+ </Select>
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ return '-';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ width: '15%',
|
|
|
+ },{
|
|
|
+ title: '供应商售价',
|
|
|
+ dataIndex: 'cpPrice',
|
|
|
key: 5,
|
|
|
- render: (text, record) => (
|
|
|
- <Dropdown
|
|
|
- overlay={
|
|
|
- <Menu>
|
|
|
- {record.goods.map(item => <Menu.Item key={item.id}>{`¥${item.terminalPrice} / ${item.chargeUnit}`}</Menu.Item>)}
|
|
|
- </Menu>
|
|
|
- }
|
|
|
- ><a>付费方式<Icon type="down" /></a>
|
|
|
- </Dropdown>
|
|
|
- ),
|
|
|
+ width: '10%',
|
|
|
},{
|
|
|
- title: '优惠价格',
|
|
|
- dataIndex: 'adjustPrice',
|
|
|
+ title: '领教售价',
|
|
|
+ dataIndex: 'merchantPrice',
|
|
|
key: 6,
|
|
|
- render: (text, record) => (
|
|
|
- <InputNumber
|
|
|
- min={0}
|
|
|
- defaultValue={0}
|
|
|
- formatter={value => `¥ ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',')}
|
|
|
- parser={value => value.replace(/\¥\s?|(,*)/g, '')}
|
|
|
- />
|
|
|
- ),
|
|
|
+ width: '10%',
|
|
|
},{
|
|
|
- title: '实际售价',
|
|
|
- dataIndex: 'finalPrice',
|
|
|
+ title: '渠道售价',
|
|
|
+ dataIndex: 'terminalPrice',
|
|
|
key: 7,
|
|
|
+ render: (text, record) => {
|
|
|
+ if (!record.isChild) {
|
|
|
+ return text;
|
|
|
+ } else {
|
|
|
+ return '-';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ width: '10%',
|
|
|
},{
|
|
|
title: '数量',
|
|
|
dataIndex: 'quantity',
|
|
|
key: 8,
|
|
|
- render: (text, record) => (
|
|
|
- <InputNumber
|
|
|
- min={1}
|
|
|
- defaultValue={1}
|
|
|
- formatter={value => `x ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',')}
|
|
|
- parser={value => value.replace(/\x\s?|(,*)/g, '')}
|
|
|
- />
|
|
|
- ),
|
|
|
+ render: (text, record) => {
|
|
|
+ if (!record.isChild || record.type == Codes.CODE_SUPPORT) {
|
|
|
+ return (
|
|
|
+ <InputNumber
|
|
|
+ min={1}
|
|
|
+ defaultValue={1}
|
|
|
+ formatter={value => `x ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',')}
|
|
|
+ parser={value => value.replace(/\x\s?|(,*)/g, '')}
|
|
|
+ />
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ return '-';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ width: '6%',
|
|
|
+ },{
|
|
|
+ title: '小计',
|
|
|
+ key: 9,
|
|
|
+ render: (text, record, index) => {
|
|
|
+
|
|
|
+ },
|
|
|
+ width: '10%',
|
|
|
},{
|
|
|
title: '操作',
|
|
|
dataIndex: 'operation',
|
|
|
- key: 9,
|
|
|
- render: (text, record) => (
|
|
|
- <a onClick={() => this.handleListItemDel(record)}>删除</a>
|
|
|
- )
|
|
|
+ key: 10,
|
|
|
+ render: (text, record) => {
|
|
|
+ if (!record.isChild) {
|
|
|
+ return <a onClick={() => this.handleListItemDel(record)}>删除</a>;
|
|
|
+ } else {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ width: '7%',
|
|
|
}];
|
|
|
|
|
|
return (
|
|
@@ -272,32 +271,60 @@ export default class CreateOrder extends Component {
|
|
|
<Form>
|
|
|
<Form.Item label="选择终端" {...formItemLayout}>
|
|
|
<Button onClick={this.handleTerminalSelectBtnClick} type="primary" size="small" icon="plus-circle-o">选择</Button>
|
|
|
- {userCode ?
|
|
|
+ {userInfo.userCode ?
|
|
|
<List
|
|
|
size="small"
|
|
|
bordered
|
|
|
style={{ width: '50%' }}
|
|
|
- dataSource={[`终端编号: ${userCode}`, `终端名称: ${userName}`, `所属校区: ${campusName}`, `所属渠道: ${merchantName}`]}
|
|
|
+ dataSource={[
|
|
|
+ `终端编号: ${userInfo.userCode}`,
|
|
|
+ `终端名称: ${userInfo.userName}`,
|
|
|
+ `所属校区: ${userInfo.campusName}`,
|
|
|
+ `所属渠道: ${userInfo.merchantName}`,
|
|
|
+ ]}
|
|
|
renderItem={item => <List.Item>{item}</List.Item>}
|
|
|
/>
|
|
|
: null}
|
|
|
</Form.Item>
|
|
|
+ <Form.Item label="收货人" {...formItemLayout}>
|
|
|
+ {getFieldDecorator('contactName', {
|
|
|
+ rules: [{ required: true, type: 'string', message: '请填写收货人!' }],
|
|
|
+ initialValue: userInfo.contactName,
|
|
|
+ })(
|
|
|
+ <Input style={{ width: "50%" }} placeholder="请填写或使用默认"/>
|
|
|
+ )}
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="联系电话" {...formItemLayout}>
|
|
|
+ {getFieldDecorator('mobile', {
|
|
|
+ rules: [{ required: true, type: 'string', message: '请填写联系电话!' }],
|
|
|
+ initialValue: userInfo.mobile,
|
|
|
+ })(
|
|
|
+ <Input style={{ width: "50%" }} placeholder="请填写或使用默认"/>
|
|
|
+ )}
|
|
|
+ </Form.Item>
|
|
|
<Form.Item label="收货地址" {...formItemLayout}>
|
|
|
- <Input.TextArea style={{ width: "50%" }} placeholder="请填写或使用默认地址"/>
|
|
|
+ {getFieldDecorator('address', {
|
|
|
+ rules: [{ required: true, type: 'string', message: '请填写收货地址!' }],
|
|
|
+ initialValue: userInfo.address,
|
|
|
+ })(
|
|
|
+ <Input.TextArea style={{ width: "50%" }} placeholder="请填写或使用默认"/>
|
|
|
+ )}
|
|
|
</Form.Item>
|
|
|
<Form.Item label="添加备注" {...formItemLayout}>
|
|
|
- <Input.TextArea style={{ width: "50%" }} placeholder="请输入(选填)" />
|
|
|
+ {getFieldDecorator('note', {
|
|
|
+ initialValue: userInfo.note,
|
|
|
+ })(
|
|
|
+ <Input.TextArea style={{ width: "50%" }} placeholder="请输入(选填)" />
|
|
|
+ )}
|
|
|
</Form.Item>
|
|
|
<Form.Item label="添加商品" {...formItemLayout}>
|
|
|
- <Button onClick={this.handleProductSelectBtnClick} disabled={merchantId ? false : true} type="primary" size="small" icon="plus-circle-o">添加</Button>
|
|
|
+ <Button onClick={this.handleProductSelectBtnClick} disabled={userInfo.merchantId ? false : true} type="primary" size="small" icon="plus-circle-o">添加</Button>
|
|
|
<Table
|
|
|
- bordered
|
|
|
- size="large"
|
|
|
- scroll={{ x: 1200 }}
|
|
|
+ scroll={{ x: 1300 }}
|
|
|
rowKey={record => record.id}
|
|
|
pagination={false}
|
|
|
columns={columns}
|
|
|
- dataSource={products}
|
|
|
+ dataSource={goodsList}
|
|
|
/>
|
|
|
</Form.Item>
|
|
|
</Form>
|
|
@@ -319,7 +346,7 @@ export default class CreateOrder extends Component {
|
|
|
<MerchantProductSelectModal
|
|
|
rowKeyName="id"
|
|
|
modalVisible={productModalShow}
|
|
|
- selTableData={products || []}
|
|
|
+ selTableData={goodsList || []}
|
|
|
style={{ top: 20 }}
|
|
|
width={660}
|
|
|
fsTableDataSource={mproduct.list}
|
|
@@ -333,7 +360,7 @@ export default class CreateOrder extends Component {
|
|
|
</Card>
|
|
|
<FooterToolbar>
|
|
|
<Button>取消</Button>
|
|
|
- <Button type="primary">完成</Button>
|
|
|
+ <Button type="primary">支付</Button>
|
|
|
</FooterToolbar>
|
|
|
</PageHeaderLayout>
|
|
|
);
|