import { LightningElement,api, track, wire } from 'lwc';
|
import {CurrentPageReference} from 'lightning/navigation';
|
import { ShowToastEvent } from 'lightning/platformShowToastEvent';
|
|
import init from '@salesforce/apex/SubmitAndRefreshController.init';
|
import submitApproval from '@salesforce/apex/AddSubmitApprovalProcessController.submitApproval';
|
|
export default class LexSampleInventory 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}`;
|
this.recordId=str;
|
}
|
}
|
}
|
|
connectedCallback(){
|
init({Id:this.recordId}).then(result=>{
|
console.log('init result==========',result);
|
if(result!=null){
|
if (result.isuploadfile == '0') {
|
this.showToast('请上传客户变更申请信息附件','error');
|
return;
|
}
|
var accname=result.hospitalName.substr(-2,2);
|
if((accname =='公司' || accname =='集团') && result.attributeType !='企业集团'){
|
this.showToast('客户为公司或集团,医院性质不是企业集团,请核实医院性质,确认是否提交?','error');
|
}
|
if (!confirm("一旦提交此记录以待批准,根据您的设置您可能不再能够编辑此记录或将他从批准过程中调回。是否继续?")) {
|
return;
|
}
|
submitApproval({recordId:this.recordId}).then(res => {
|
console.log(res,'<======res')
|
}).catch(err => {
|
console.log(err,'<======err')
|
this.showToast(err,'error')
|
})
|
}
|
});
|
}
|
showToast(msg,type) {
|
const event = new ShowToastEvent({
|
title: '',
|
message: msg,
|
variant: type
|
});
|
this.IsLoading = false;
|
this.dispatchEvent(event);
|
this.dispatchEvent(new CloseActionScreenEvent());
|
}
|
}
|