个税在线申报-申报表导出功能的完成

This commit is contained in:
黎永顺 2023-08-25 14:42:31 +08:00
parent ea3cfbe0fc
commit bc952ecaad
4 changed files with 19 additions and 7 deletions

View File

@ -8,7 +8,19 @@
.formWrapper { .formWrapper {
line-height: 40px; line-height: 40px;
border-bottom: 1px solid #eee; border: 1px solid #eee;
.ant-col-12 {
padding: 0 16px;
}
& > div:first-child {
border-bottom: 1px solid #eee;
& > div:first-child {
border-right: 1px solid #e5e5e5;
}
}
} }
.operateBarWrapper { .operateBarWrapper {

View File

@ -73,7 +73,7 @@ class EmployeeDeclareDetailCalcDialog extends Component {
<span className="title">{getLabel(111, "报送失败数据详情")}</span> <span className="title">{getLabel(111, "报送失败数据详情")}</span>
</Col> </Col>
<Col span={12} className="declareCalcDialogTitle-right"> <Col span={12} className="declareCalcDialogTitle-right">
<Button type="primary" onClick={this.handleSubmit}>{getLabel(81272, "导出全部")}</Button> {/*<Button type="primary" onClick={this.handleSubmit}>{getLabel(81272, "导出全部")}</Button>*/}
</Col> </Col>
</Row>)} </Row>)}
style={{ style={{

View File

@ -388,9 +388,9 @@ class Index extends Component {
const menu = ( const menu = (
<Menu onClick={this.handleMenuClick}> <Menu onClick={this.handleMenuClick}>
<Menu.Item key="1">{getLabel(32136, "批量删除")}</Menu.Item> <Menu.Item key="1">{getLabel(32136, "批量删除")}</Menu.Item>
<Menu.Item key="2">{getLabel(111, "批量编辑")}</Menu.Item> {/*<Menu.Item key="2">{getLabel(111, "批量编辑")}</Menu.Item>*/}
<Menu.Item key="3">{getLabel(81272, "导出全部")}</Menu.Item> {/*<Menu.Item key="3">{getLabel(81272, "导出全部")}</Menu.Item>*/}
<Menu.Item key="4">{getLabel(543715, "导出所选")}</Menu.Item> {/*<Menu.Item key="4">{getLabel(543715, "导出所选")}</Menu.Item>*/}
</Menu> </Menu>
); );
const buttons = [ const buttons = [
@ -422,7 +422,7 @@ class Index extends Component {
onClick={this.handleAdd} onClick={this.handleAdd}
overlay={ overlay={
<Menu> <Menu>
<Menu.Item key="1">{getLabel(32935, "导入")}</Menu.Item> {/*<Menu.Item key="1">{getLabel(32935, "导入")}</Menu.Item>*/}
</Menu> </Menu>
} }
type="primary">{getLabel(1421, "新增")}</Dropdown.Button>, type="primary">{getLabel(1421, "新增")}</Dropdown.Button>,

View File

@ -18,7 +18,7 @@ const { getLabel } = WeaLocaleProvider;
class TaxFilingInfoDialofg extends Component { class TaxFilingInfoDialofg extends Component {
componentWillReceiveProps(nextProps, nextContext) { componentWillReceiveProps(nextProps, nextContext) {
if (nextProps.visible !== this.props.visible && nextProps.visible) { if (nextProps.visible !== this.props.visible && nextProps.visible && !_.isEmpty(nextProps.taxAgentTaxReturnCheckFormDTO)) {
const { taxAgentTaxReturnCheckFormDTO, taxAgentStore: { taxfillInfoForm } } = nextProps; const { taxAgentTaxReturnCheckFormDTO, taxAgentStore: { taxfillInfoForm } } = nextProps;
taxfillInfoForm.initFormFields(taxFillCondition); taxfillInfoForm.initFormFields(taxFillCondition);
const fields = _.map(taxFillCondition[0].items, it => { const fields = _.map(taxFillCondition[0].items, it => {