import { LightningElement,wire,track,api} from 'lwc';
|
import { CurrentPageReference } from "lightning/navigation";
|
import { CloseActionScreenEvent } from 'lightning/actions';
|
import { ShowToastEvent } from 'lightning/platformShowToastEvent';
|
import init from '@salesforce/apex/HosipitalToDeptController.init';
|
import submitApproval from '@salesforce/apex/AddSubmitApprovalProcessController.submitApproval';
|
|
export default class LexSubmitAndRefreshAccount extends LightningElement {
|
@api recordId;
|
IsLoading=true;
|
@wire(CurrentPageReference)
|
getStateParameters(currentPageReference){
|
console.log("进入页面");
|
console.log(currentPageReference);
|
if(currentPageReference){
|
const urvalue=currentPageReference.state.recordId;
|
if(urvalue){
|
let str=`${urvalue}`;
|
console.log('str');
|
console.log(str);
|
this.recordId=str;
|
}
|
}
|
}
|
|
connectedCallback(){
|
init({recordId:this.recordId}).then(res => {
|
console.log(res,'<========res')
|
if(res.giMain == ''){
|
this.showToast('请填写GI主担当','error');
|
}else if(res.bfowner == ''){
|
this.showToast('请填写BF主担当','error');
|
}else if(res.etowner == ''){
|
this.showToast('请填写ET主担当','error');
|
}else if(res.spmain == ''){
|
this.showToast('请填写GS主担当','error');
|
}else if(res.uroownerID == ''){
|
this.showToast('请填写URO主担当','error');
|
}else if(res.gynowner == ''){
|
this.showToast('请填写GYN主担当','error');
|
}else if(res.entownerID == ''){
|
this.showToast('请填写ENT主担当','error');
|
}
|
if('{!Account.Tender_information__c}' !=''){
|
|
}else if (res.isuploadfile == '0' || res.isuploadfile == false) {
|
this.showToast('请上传医院信息附件','error');
|
return;
|
}
|
var accname=res.name.substr(-2,2);
|
if((accname =='公司' || accname =='集团') && res.attributeType !='企业集团'){
|
this.showToast('客户为公司或集团,医院性质不是企业集团,请核实医院性质,确认是否提交?','success');
|
}
|
if (!confirm("一旦提交此记录以待批准,根据您的设置您可能不再能够编辑此记录或将他从批准过程中调回。是否继续?")) {
|
return;
|
}
|
submitApproval({recordId:this.recordId}).then(rep => {
|
console.log(rep,'<========result')
|
}).catch(err => {
|
this.showToast(err,'error')
|
})
|
this.dispatchEvent(new CloseActionScreenEvent());
|
})
|
|
}
|
showToast(msg, type) {
|
const event = new ShowToastEvent({
|
message: msg,
|
variant: type
|
});
|
this.dispatchEvent(event);
|
this.dispatchEvent(new CloseActionScreenEvent());
|
}
|
}
|