Merge remote-tracking branch 'origin/main'
commit
d6230497c0
|
@ -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: ""}
|
||||||
|
|
Loading…
Reference in New Issue