Merge remote-tracking branch 'origin/main'

main
白封羽 2023-01-05 20:09:55 +08:00
commit d6230497c0
1 changed files with 4 additions and 5 deletions

View File

@ -135,15 +135,14 @@ class ReimbursementCreate extends React.Component<any, any> {
}; };
submitCheck = () => { submitCheck = () => {
//TODO: check
let msgContent:string = "" let msgContent:string = ""
if(this.state.departureName == "" ) { if(this.state.departureName === "" ) {
msgContent = "未填写出发地" msgContent = "未填写出发地"
} else if(this.state.destinationName == "") { } else if(this.state.destinationName === "") {
msgContent = "未填写目的地" msgContent = "未填写目的地"
} else if(this.state.departureInvoice == null) { } else if(this.state.departureInvoice === null) {
msgContent = "未上传出发票据" msgContent = "未上传出发票据"
} else if(this.state.selectedDepartment == null || this.state.selectedDepartment.isEmpty()) { } else if(this.state.selectedDepartment === null) {
msgContent = "未选择报销部门" msgContent = "未选择报销部门"
} else { } else {
return {ok: true, msg: ""} return {ok: true, msg: ""}