|
@@ -3,6 +3,7 @@ import { connect } from 'dva';
|
|
|
import { routerRedux } from 'dva/router';
|
|
|
import queryString from 'query-string';
|
|
|
import {
|
|
|
+ Tooltip,
|
|
|
Popover,
|
|
|
Modal,
|
|
|
Card,
|
|
@@ -70,19 +71,42 @@ export default class CreateOrder extends Component {
|
|
|
this.props.dispatch({ type: 'orderDetail/hideTerminalModal' });
|
|
|
}
|
|
|
|
|
|
- handleTerminalModalSearch = () => {
|
|
|
-
|
|
|
+ handleTerminalModalSearch = (data) => {
|
|
|
+ const newData = { ...data };
|
|
|
+ if (newData.keyword) {
|
|
|
+ newData[newData.field] = newData.keyword;
|
|
|
+ }
|
|
|
+ delete newData.field;
|
|
|
+ delete newData.keyword;
|
|
|
+ this.props.dispatch({
|
|
|
+ type: `terminal/query`,
|
|
|
+ payload: { ...newData, pageNo: 1, pageSize },
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
- handleTerminalModalTableChange = () => {
|
|
|
+ handleTerminalModalTableChange = (pagination, filterArgs, filters) => {
|
|
|
+ const newFilters = { ...filters };
|
|
|
+ if (newFilters.keyword) {
|
|
|
+ newFilters[newFilters.field] = newFilters.keyword;
|
|
|
+ }
|
|
|
+ delete newFilters.field;
|
|
|
+ delete newFilters.keyword;
|
|
|
+ const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
|
|
|
+ const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
|
|
|
+ const newObj = { ...obj };
|
|
|
+ newObj[key] = getValue(filterArgs[key]);
|
|
|
+ return newObj;
|
|
|
+ }, {});
|
|
|
|
|
|
+ const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize };
|
|
|
+ Object.keys(data).map(key => data[key] ? null : delete data[key]);
|
|
|
+ this.props.dispatch({ type: `terminal/query`, payload: data });
|
|
|
}
|
|
|
|
|
|
// 产品选择弹框
|
|
|
handleProductSelectBtnClick = () => {
|
|
|
- const { orderDetail } = this.props;
|
|
|
- const { currentItem } = orderDetail;
|
|
|
- const { merchantId } = currentItem;
|
|
|
+ const { userInfo } = this.state;
|
|
|
+ const { merchantId } = userInfo;
|
|
|
this.props.dispatch({ type: 'orderDetail/showProductModal' });
|
|
|
this.props.dispatch({
|
|
|
type: 'mproduct/query',
|
|
@@ -94,12 +118,40 @@ export default class CreateOrder extends Component {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- handleProductModalSearch = () => {
|
|
|
-
|
|
|
+ handleProductModalSearch = (data) => {
|
|
|
+ const { userInfo } = this.state;
|
|
|
+ const { merchantId } = userInfo;
|
|
|
+ const newData = { ...data };
|
|
|
+ if (newData.keyword) {
|
|
|
+ newData[newData.field] = newData.keyword;
|
|
|
+ }
|
|
|
+ delete newData.field;
|
|
|
+ delete newData.keyword;
|
|
|
+ this.props.dispatch({
|
|
|
+ type: 'mproduct/query',
|
|
|
+ payload: { ...newData, merchantId, pageNo: 1, pageSize },
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
- handleProductModalTableChange = () => {
|
|
|
+ handleProductModalTableChange = (pagination, filterArgs, filters) => {
|
|
|
+ const { userInfo } = this.state;
|
|
|
+ const { merchantId } = userInfo;
|
|
|
+ const newFilters = { ...filters };
|
|
|
+ if (newFilters.keyword) {
|
|
|
+ newFilters[newFilters.field] = newFilters.keyword;
|
|
|
+ }
|
|
|
+ delete newFilters.field;
|
|
|
+ delete newFilters.keyword;
|
|
|
+ const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
|
|
|
+ const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
|
|
|
+ const newObj = { ...obj };
|
|
|
+ newObj[key] = getValue(filterArgs[key]);
|
|
|
+ return newObj;
|
|
|
+ }, {});
|
|
|
|
|
|
+ const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize, merchantId };
|
|
|
+ Object.keys(data).map(key => data[key] ? null : delete data[key]);
|
|
|
+ this.props.dispatch({ type: 'mporduct/query', payload: data });
|
|
|
}
|
|
|
|
|
|
// 选择产品
|
|
@@ -116,9 +168,28 @@ export default class CreateOrder extends Component {
|
|
|
this.props.dispatch({ type: 'orderDetail/hideProductModal' });
|
|
|
}
|
|
|
|
|
|
+ // 对待选的产品进行过滤,如果没有goods则不可选
|
|
|
+ productListFilter = (list) => {
|
|
|
+ const newList = [...list];
|
|
|
+ newList.map(item =>
|
|
|
+ (!item.goods || item.goods.length == 0) ? item.selectable = true : item.selectable = false);
|
|
|
+ return newList;
|
|
|
+ }
|
|
|
+
|
|
|
handleListItemDel = (record) => {
|
|
|
+ const { products, tableDatas } = this.state;
|
|
|
Modal.confirm({
|
|
|
title: '确定从清单中删除此商品?',
|
|
|
+ cancelText: '取消',
|
|
|
+ okText: '确认',
|
|
|
+ onOk: () => {
|
|
|
+ const newProducts = products.filter(item => item.id !== record.key);
|
|
|
+ const newTableDatas = tableDatas.filter(item => item.key.indexOf(record.key) == -1);
|
|
|
+ this.setState({
|
|
|
+ products: newProducts,
|
|
|
+ tableDatas: newTableDatas,
|
|
|
+ });
|
|
|
+ },
|
|
|
});
|
|
|
}
|
|
|
|
|
@@ -244,6 +315,7 @@ export default class CreateOrder extends Component {
|
|
|
};
|
|
|
};
|
|
|
data.map(item => {
|
|
|
+ if (!item.goods || item.goods.length == 0) return;
|
|
|
if (item.type == Codes.CODE_COURSE) {
|
|
|
const newObj = rowDataMaker(item);
|
|
|
newObj.sumRows = 1;
|
|
@@ -329,6 +401,7 @@ export default class CreateOrder extends Component {
|
|
|
const { getFieldDecorator } = form;
|
|
|
const { terminalModalShow, productModalShow } = orderDetail;
|
|
|
const listData = tableDatas;
|
|
|
+ const productList = this.productListFilter(mproduct.list);
|
|
|
|
|
|
const formItemLayout = {
|
|
|
labelCol: {
|
|
@@ -416,7 +489,7 @@ export default class CreateOrder extends Component {
|
|
|
/>
|
|
|
);
|
|
|
// 配套
|
|
|
- } else if (row.type == Codes.CODE_COURSE && !row.parent) {
|
|
|
+ } else if (row.type == Codes.CODE_SUPPORT && !row.parent) {
|
|
|
return (
|
|
|
<InputNumber
|
|
|
value={text}
|
|
@@ -460,7 +533,7 @@ export default class CreateOrder extends Component {
|
|
|
title: '操作',
|
|
|
dataIndex: 'operation',
|
|
|
key: 10,
|
|
|
- render: (text, row) => ({ children: <a>删除</a>, props: { rowSpan: row.sumRows } }),
|
|
|
+ render: (text, row) => ({ children: <a onClick={() => this.handleListItemDel(row)}>删除</a>, props: { rowSpan: row.sumRows } }),
|
|
|
width: '7%',
|
|
|
}];
|
|
|
|
|
@@ -520,7 +593,13 @@ export default class CreateOrder extends Component {
|
|
|
)}
|
|
|
</Form.Item>
|
|
|
<Form.Item label="添加商品" {...formItemLayout}>
|
|
|
- <Button onClick={this.handleProductSelectBtnClick} disabled={userInfo.merchantId ? false : true} type="primary" size="small" icon="plus-circle-o">添加</Button>
|
|
|
+ {userInfo.merchantId ?
|
|
|
+ <Button onClick={this.handleProductSelectBtnClick} type="primary" size="small" icon="plus-circle-o">添加</Button>
|
|
|
+ :
|
|
|
+ <Tooltip title="先选择终端">
|
|
|
+ <Button onClick={this.handleProductSelectBtnClick} disabled={true} type="primary" size="small" icon="plus-circle-o">添加</Button>
|
|
|
+ </Tooltip>
|
|
|
+ }
|
|
|
<Table
|
|
|
bordered
|
|
|
scroll={{ x: 1250 }}
|
|
@@ -552,7 +631,7 @@ export default class CreateOrder extends Component {
|
|
|
selTableData={products}
|
|
|
style={{ top: 20 }}
|
|
|
width={660}
|
|
|
- fsTableDataSource={mproduct.list}
|
|
|
+ fsTableDataSource={productList}
|
|
|
fsTableLoading={mproduct.listLoading}
|
|
|
fsTablePagination={mproduct.pagination}
|
|
|
onOk={this.handleProductModalOk}
|