import React from 'react';
import { Icon, Button, Select, Spin, Table, message, DatePicker, Cascader } from 'antd';
import { provinceSelect, getProvince } from '../../../NewDicProvinceList';
import { getTime, getPatentType, getPatentState, companySearch } from '../../../tools.js';
import ajax from 'jquery/src/ajax/xhr.js';
import $ from 'jquery/src/ajax';
import moment from 'moment';
import './comprehensive.less';
import ApplyFeeDesc from './applyFeeDesc.jsx';

const applyFee = React.createClass({
    loadData(pageNo) {
        this.state.data = [];
        this.setState({
            loading: true
        });
        $.ajax({
            method: "get",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/api/admin/patent/getApplicationFeeList",
            data: {
                pageNo: pageNo || 1,
                pageSize: this.state.pagination.pageSize,
                locationProvince: this.state.province ? this.state.province[0] : undefined,
                patentApplicationDate: this.state.searchData
            },
            success: function (data) {
                if (data.error.length || !data.data || !data.data.list) {
                    message.warning(data.error[0].message);
                    return;
                }
                for (let i = 0; i < data.data.list.length; i++) {
                    let thisdata = data.data.list[i];
                    this.state.data.push({
                        key: i,
                        cid: thisdata.cid,
                        number: thisdata.serialNumber,
                        province: thisdata.locationProvince,
                        patentNumber: thisdata.patentNumber,
                        unitName: thisdata.unitName,
                        patentName: thisdata.patentName,
                        patentApplicationDate: thisdata.patentApplicationDate,
                        endTime: thisdata.patentApplicationDate,
                        paymentState: thisdata.paymentState,
                        applicationFee: thisdata.applicationFee,
                        // trialFee: thisdata.trialFee,
                        // printingFee: thisdata.printingFee,
                        funds: thisdata.funds,
                        reimbursement: thisdata.reimbursement,
                    });
                };
                this.state.pagination.current = data.data.pageNo;
                this.state.pagination.total = data.data.totalCount;
                this.setState({
                    dataSource: this.state.data,
                    pagination: this.state.pagination
                });
            }.bind(this),
        }).always(function () {
            this.setState({
                loading: false
            });
        }.bind(this));
    },
    getInitialState() {
        return {
            searchData: [],
            data: [],
            loading: false,
            pagination: {
                defaultCurrent: 1,
                defaultPageSize: 10,
                showQuickJumper: true,
                pageSize: 10,
                onChange: function (page) {
                    this.loadData(page);
                }.bind(this),
                showTotal: function (total) {
                    return '共' + total + '条数据';
                }
            },
            columns: [
                {
                    title: '编号',
                    dataIndex: 'number',
                    key: 'number',
                }, {
                    title: '申请号/专利号',
                    dataIndex: 'patentNumber',
                    key: 'patentNumber',
                }, {
                    title: '省份',
                    dataIndex: 'province',
                    key: 'province',
                    render: text => { return getProvince(text) }
                }, {
                    title: '公司名称',
                    dataIndex: 'unitName',
                    key: 'unitName',
                }, {
                    title: '专利名称',
                    dataIndex: 'patentName',
                    key: 'patentName',
                }, {
                    title: '缴费状态',
                    dataIndex: 'paymentState',
                    key: 'paymentState',
                    render: text => {
                        if (text == '0') {
                            return '待缴费'
                        } else if (text == '1') {
                            return '已缴费'
                        };
                    }
                }, {
                    title: '申请费',
                    dataIndex: 'applicationFee',
                    key: 'applicationFee'
                    // }, {
                    //     title: '实审费',
                    //     dataIndex: 'trialFee',
                    //     key: 'trialFee'
                    // }, {
                    //     title: '文印费',
                    //     dataIndex: 'printingFee',
                    //     key: 'printingFee'
                }, {
                    title: '是否请款',
                    dataIndex: 'funds',
                    key: 'funds',
                    render: text => {
                        if (text == '0') {
                            return '未请款'
                        } else if (text == '1') {
                            return '已请款'
                        };
                    }
                }, {
                    title: '是否报销',
                    dataIndex: 'reimbursement',
                    key: 'reimbursement',
                    render: text => {
                        if (text == '0') {
                            return '未报销'
                        } else if (text == '1') {
                            return '已报销'
                        };
                    }
                }, {
                    title: '申请日',
                    dataIndex: 'patentApplicationDate',
                    key: 'patentApplicationDate',
                    render: text => { return getTime(text) }
                }, {
                    title: '缴费截止时间',
                    dataIndex: 'endTime',
                    key: 'endTime',
                    render: text => { return getTime(text, 2) }
                }
            ],
            dataSource: []
        };
    },
    componentWillMount() {
        this.loadData();
    },
    tableRowClick(record, index) {
        this.state.RowData = record;
        if (record.annualFeeState !== '1') {
            this.setState({
                showDesc: true
            });
        };
    },
    closeDesc(e, s) {
        this.state.showDesc = e;
        if (s) {
            this.loadData();
        };
    },
    search() {
        this.loadData();
    },
    reset() {
        this.state.province = undefined;
        this.state.searchData = [];
        this.loadData();
    },
    exportApply() {
        window.open(globalConfig.context + "/api/admin/patent/exportApplicationFee?locationProvince="
            + (this.state.province ? this.state.province[0] : null) + "&patentApplicationDate=" + this.state.searchData);
    },
    render() {
        const { MonthPicker, RangePicker } = DatePicker;
        return (
            <div className="patent-content" >
                <div className="content-title">
                    <span>专利申请费用管理</span>
                </div>
                <div className="patent-query">
                    <Cascader placeholder="选择省份"
                        style={{ width: 100, marginTop: "-4px", marginLeft: 0 }}
                        value={this.state.province}
                        options={provinceSelect()}
                        showSearch
                        filterOption={companySearch}
                        onChange={(e) => { this.setState({ province: e }) }} />
                    <span>申请日:
                    <RangePicker style={{ width: '240px' }}
                            allowClear={false}
                            value={[this.state.searchData[0] ? moment(this.state.searchData[0]) : null, this.state.searchData[1] ? moment(this.state.searchData[1]) : null]}
                            onChange={(date, dateString) => { this.setState({ searchData: dateString }) }} />
                    </span>
                    <span>
                        <Button type="primary" onClick={this.search}>搜索</Button>
                        <Button onClick={this.reset}>重置</Button>
                        <Button type="ghost" onClick={this.exportApply}>导出</Button>
                    </span>
                </div>
                <div className="patent-table">
                    <Spin spinning={this.state.loading}>
                        <Table columns={this.state.columns}
                            dataSource={this.state.dataSource}
                            pagination={this.state.pagination}
                            onRowClick={this.tableRowClick} />
                    </Spin>
                </div>
                <ApplyFeeDesc data={this.state.RowData} showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
            </div >
        );
    }
});

export default applyFee;