feature/2.12.1.2403.02-个税-外籍人员信息报送

This commit is contained in:
黎永顺 2024-04-10 14:30:30 +08:00
parent e30032abb1
commit 803f3305eb
2 changed files with 3 additions and 3 deletions

View File

@ -252,7 +252,8 @@ class Index extends Component {
const { taxAgentId, taxCycle: taxYearMonth } = this.state.declareInfo;
const payload = {
taxDeclareRecordId: getQueryString("id"),
taxAgentId, taxYearMonth: taxYearMonth + "-01"
taxAgentId, taxYearMonth: taxYearMonth + "-01",
reportType: this.state.reportType
};
this.setState({ loading: { ...this.state.loading, refreshingPay: true } });
taxPaymentVoucherStatusSync(payload).then(({ status, errormsg }) => {

View File

@ -283,8 +283,7 @@ class EmployeeDeclareDetailSchemaEditDialog extends Component {
const payload = {
...form.getFormParams(), id: this.props.id,
taxAgentId: getQueryString("id"),
taxCycle: this.props.taxCycle,
taxReasons: taxReasons.split(",")
taxCycle: this.props.taxCycle
};
this.setState({ loading: true });
getEmployeeSave(payload).then(({ status, errormsg }) => {