Merge branch 'hotfix/2.9.42310.01' into release/2.9.42310.01
This commit is contained in:
commit
4d76443438
|
|
@ -143,7 +143,8 @@ export default class MobilePayroll extends React.Component {
|
|||
const { salaryTemplate } = mySalaryBillData;
|
||||
const { feedbackUrl } = salaryTemplate;
|
||||
this.getMySalaryBill(getQueryString("id"));
|
||||
window.open(`${window.ecologyContentPath || ""}${feedbackUrl}`);
|
||||
window.location.href=`${window.ecologyContentPath || ""}${feedbackUrl}`
|
||||
// window.open(`${window.ecologyContentPath || ""}${feedbackUrl}`);
|
||||
} else {
|
||||
message.error(errorMsg);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -312,7 +312,7 @@ export default class FormalFormModal extends React.Component {
|
|||
// validateType: this.props.dataType || this.state.returnType,
|
||||
// extendParam: JSON.stringify(this.state.extendParam),
|
||||
// formula: this.state.value,
|
||||
parameters: this.parameters,
|
||||
parameters: _.map(this.parameters, o => ({ ...o, content: o.content || "" })),
|
||||
id: this.props.formulaId
|
||||
// referenceType: this.referenceType == "" ? this.props.valueType == "2" ? "formula" : this.props.valueType == "3" ? "sql" : "" : this.referenceType
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue