import React from 'react';
import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber } from 'antd';
import './annualReport.less';
import { annualReportStateList } from '../../dataDic.js';
import { beforeUploadFile, getAnnualReportState } from '../../tools.js';
import { getProvince } from '../../NewDicProvinceList'
import moment from 'moment';
import ajax from 'jquery/src/ajax/xhr.js';
import $ from 'jquery/src/ajax';
const AnnualReportDescFrom = Form.create()(React.createClass({
    getInitialState() {
        return {
            loading: false,
            data: {},
            contactsOption: [],
            contactsObj: {},
            yearOption: []
        };
    },
    loadData(theYear) {
        this.setState({
            loading: true
        })
        $.ajax({
            method: "post",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/api/user/cognizance/annualReportDetail",
            data: {
                year: theYear || this.props.data.year
            }
        }).done((data) => {
            let thisdata = data.data;
            if (!thisdata) {
                if (data.error && data.error.length) {
                    message.warning(data.error[0].message);
                };
                thisdata = {};
            } else {
                thisdata.location = getProvince(thisdata.locationProvince, thisdata.locationCity, thisdata.locationArea);
            };
            this.setState({
                data: thisdata
            });
        }).always(function () {
            this.setState({
                loading: false
            })
        }.bind(this));
    },
    getContactsOption() {
        let theOption = [], theObj = {};
        $.ajax({
            method: "get",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + '/api/user/getContacts',
            success: function (data) {
                if (!data.data) {
                    if (data.error && data.error.length) {
                        message.warning(data.error[0].message);
                    };
                } else {
                    for (let item in data.data) {
                        let theData = data.data[item];
                        theOption.push(
                            {theData}
                        );
                    };
                    theObj = data.data || {};
                };
                this.setState({
                    contactsOption: theOption,
                    contactsObj: theObj
                });
            }.bind(this)
        });
    },
    componentWillMount() {
        let d = new Date();
        let _me = this;
        d = d.getFullYear();
        for (let i = d; i > d - 20; i--) {
            _me.state.yearOption.push(
                {i}
            )
        };
        this.getContactsOption();
        if (this.props.data) {
            this.loadData();
        };
    },
    componentWillReceiveProps(nextProps) {
        if (!this.props.visible && nextProps.visible) {
            if (nextProps.data) {
                this.loadData(nextProps.data.year)
            };
        };
    },
    handleSubmit(e) {
        e.preventDefault();
        this.props.form.validateFields((err, values) => {
            if (!err) {
                this.props.spinState(true);
                $.ajax({
                    method: "POST",
                    dataType: "json",
                    crossDomain: false,
                    url: globalConfig.context + "/api/user/cognizance/disposeAnnualReport",
                    data: {
                        id: this.props.data.id,
                        year: this.props.data.year,
                        totalTax: values.totalTax,
                        incomeTaxRelief: values.incomeTaxRelief,
                        totalExportVolume: values.totalExportVolume,
                        basicResearchCost: values.basicResearchCost,
                        state: 0,
                    }
                }).done(function (data) {
                    if (!data.error.length) {
                        message.success('保存成功!');
                        this.props.clickOk();
                        this.props.spinState(false);
                        this.props.form.resetFields();
                    } else {
                        message.warning(data.error[0].message);
                        this.props.spinState(false);
                    }
                }.bind(this));
            }
        });
    },
    render() {
        const FormItem = Form.Item;
        const { getFieldDecorator } = this.props.form;
        const theData = this.state.data;
        const formItemLayout = {
            labelCol: { span: 0 },
            wrapperCol: { span: 20 },
        };
        const _me = this;
        return (
            
        );
    },
}));
const AnnualReportDesc = React.createClass({
    getInitialState() {
        return {
            visible: false,
            loading: false
        };
    },
    componentWillReceiveProps(nextProps) {
        this.state.visible = nextProps.showDesc;
    },
    showModal() {
        this.setState({
            visible: true,
        });
    },
    handleOk() {
        this.setState({
            visible: false,
        });
        this.props.closeDesc(false, true);
    },
    handleCancel(e) {
        this.setState({
            visible: false,
        });
        this.props.closeDesc(false);
    },
    render() {
        return (
            
        );
    },
});
const AnnualReportAdd = React.createClass({
    getInitialState() {
        return {
            visible: false,
            loading: false,
            yearOption: []
        };
    },
    componentWillReceiveProps(nextProps) {
        this.state.visible = nextProps.showAdd
    },
    componentWillMount() {
        let d = new Date();
        let _me = this;
        d = d.getFullYear();
        for (let i = d; i > d - 20; i--) {
            _me.state.yearOption.push(
                {i}
            )
        };
    },
    showModal() {
        this.setState({
            visible: true,
        });
    },
    handleOk() {
        this.setState({
            loading: true
        });
        if (!this.state.year) {
            message.warning('请选择年份!');
            this.setState({
                loading: false
            });
            return;
        };
        $.ajax({
            method: "POST",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/api/user/cognizance/disposeAnnualReport",
            data: {
                year: this.state.year,
                totalTax: this.state.totalTax,
                incomeTaxRelief: this.state.incomeTaxRelief,
                totalExportVolume: this.state.totalExportVolume,
                basicResearchCost: this.state.basicResearchCost,
                state: 0
            }
        }).done(function (data) {
            this.setState({
                loading: false
            });
            if (!data.error.length) {
                message.success('保存成功!');
                this.setState({
                    visible: false
                });
                this.props.closeAdd(false, true);
            } else {
                message.warning(data.error[0].message);
            }
        }.bind(this));
    },
    handleCancel(e) {
        this.setState({
            visible: false,
        });
        this.props.closeAdd(false);
    },
    spinChange(e) {
        this.setState({
            loading: e
        });
    },
    render() {
        return (
            
                
                            提交
                            ,
                        ,
                    ]}
                >
                    
                        
                            
                                选择申请年份: 
                                
                            
                         
                        
                            
                                纳税总额:  
                                 { this.state.totalTax = e; }} />
                                 (万元)
                            
                            
                                高企所得税减免额:  
                                 { this.state.incomeTaxRelief = e; }} />
                                 (万元)
                            
                            
                                出口创汇总额(人民币):  
                                 { this.state.totalExportVolume = e; }} />
                                 (万元)
                            
                            
                                基础研究投入费用:  
                                 { this.state.basicResearchCost = e; }} />
                                 (万元)
                            
                         
                    
                
             
        );
    }
});
const AnnualReport = React.createClass({
    loadData(pageNo) {
        this.state.data = [];
        this.setState({
            loading: true
        });
        $.ajax({
            method: "post",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/api/user/cognizance/annualReport",
            data: {
                pageNo: pageNo || 1,
                pageSize: this.state.pagination.pageSize,
            }
        }).done((data) => {
            if (!data.data || !data.data.list) {
                if (data.error.length) {
                    message.warning(data.error[0].message);
                    this.state.ButtonDisabled = true;
                };
                return;
            };
            for (let i = 0; i < data.data.list.length; i++) {
                let thisdata = data.data.list[i];
                this.state.data.push({
                    key: i,
                    id: thisdata.id,
                    uid: thisdata.uid,
                    createTime: thisdata.createTime,
                    lastUpdateTime: thisdata.lastUpdateTime,
                    totalTax: thisdata.totalTax,
                    incomeTaxRelief: thisdata.incomeTaxRelief,
                    totalExportVolume: thisdata.totalExportVolume,
                    year: thisdata.year,
                    state: thisdata.state,
                    createTimeFormattedDate: thisdata.createTimeFormattedDate,
                    lastUpdateTimeFormattedDate: thisdata.lastUpdateTimeFormattedDate,
                    basicResearchCost: thisdata.basicResearchCost
                });
            };
            this.state.pagination.current = data.data.pageNo;
            this.state.pagination.total = data.data.totalCount;
            this.setState({
                dataSource: this.state.data,
                pagination: this.state.pagination
            });
        }).always(function () {
            this.setState({
                loading: false
            });
        }.bind(this));
    },
    getInitialState() {
        return {
            selectedRowKeys: [],
            selectedRows: [],
            RowData: {},
            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: 'year',
                    key: 'year'
                }, {
                    title: '创建时间',
                    dataIndex: 'createTimeFormattedDate',
                    key: 'createTimeFormattedDate'
                }, {
                    title: '最近更新时间',
                    dataIndex: 'lastUpdateTimeFormattedDate',
                    key: 'lastUpdateTimeFormattedDate'
                }, {
                    title: '年报状态',
                    dataIndex: 'state',
                    key: 'state',
                    render: (text) => {
                        return getAnnualReportState(text)
                    }
                }
            ],
            dataSource: []
        };
    },
    componentWillMount() {
        this.loadData();
    },
    tableRowClick(record, index) {
        this.state.RowData = record;
        this.setState({
            showDesc: true
        });
    },
    // delectRow() {
    //     let deletedIds = [];
    //     for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
    //         let rowItem = this.state.selectedRows[idx];
    //         if (rowItem.id) {
    //             deletedIds.push(rowItem.id)
    //         }
    //     }
    //     this.setState({
    //         selectedRowKeys: [],
    //         loading: deletedIds.length > 0
    //     });
    //     $.ajax({
    //         method: "POST",
    //         dataType: "json",
    //         crossDomain: false,
    //         url: globalConfig.context + "/api/user/cognizance/deleteAnnualReport",
    //         data: {
    //             ids: deletedIds
    //         }
    //     }).done(function (data) {
    //         if (!data.error.length) {
    //             message.success('保存成功!');
    //             this.setState({
    //                 loading: false,
    //             });
    //         } else {
    //             message.warning(data.error[0].message);
    //         };
    //         this.loadData();
    //     }.bind(this));
    // },
    closeDesc(e, s) {
        this.state.showDesc = e;
        if (s) {
            this.loadData();
        };
    },
    addClick() {
        this.setState({
            showAdd: true
        });
    },
    closeAdd(e, s) {
        this.state.showAdd = e;
        if (s) {
            this.loadData();
        };
    },
    // search() {
    //     this.loadData();
    // },
    // reset() {
    //     this.loadData();
    // },
    render() {
        const rowSelection = {
            selectedRowKeys: this.state.selectedRowKeys,
            onChange: (selectedRowKeys, selectedRows) => {
                this.setState({
                    selectedRows: selectedRows,
                    selectedRowKeys: selectedRowKeys
                });
            }
        };
        const hasSelected = this.state.selectedRowKeys.length > 0;
        return (
            
        );
    }
});
export default AnnualReport;