buli
2023-06-05 cb95755fe8496d8af6d40b05c4bbd4b6df2e77ab
force-app/main/default/lwc/lexTerminalMaintenance/lexTerminalMaintenance.js
@@ -55,7 +55,6 @@
    //中止
    Terminal() {
        // sforce.connection.sessionId = this.sessionId;
        if (this.ProcessStatusC == "草案中" ||
            this.ProcessStatusC == "不批准" ||
            this.ProcessStatusC == "批准"
@@ -63,16 +62,13 @@
            updateMaintenanceContract({
                recordId: this.Id
            }).then(result => {
                this.ShowToastEvent("该维修合同报价中止了!", "success");
                // alert("该维修合同报价中止了!")
                window.location.reload();
                this.ShowToastEvent("该维修合同报价中止了!", "success");
            }).catch(error => {
                console.log(error);
            })
        } else {
            this.ShowToastEvent("该维修合同报价还在审批中 或 已经中止,不能中止!", "error");
            // alert("该维修合同报价还在审批中 或 已经中止,不能中止!")
        }
    }