fix bug
This commit is contained in:
@ -466,8 +466,26 @@ export class NetworkFreightComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
if(this.NCStatus) {
|
||||||
|
this.getNcSetData()
|
||||||
|
}
|
||||||
this.isVisibleTicket = true;
|
this.isVisibleTicket = true;
|
||||||
}
|
}
|
||||||
|
getNcSetData() {
|
||||||
|
const List: any = [];
|
||||||
|
console.log(99999);
|
||||||
|
this.service.request(this.service.$api_get_crmCustomer, { id: this.ticketItem.crmCustomerId }).subscribe((res: any) => {
|
||||||
|
console.log(res);
|
||||||
|
if (res) {
|
||||||
|
List.push({ label: res.customerName, value: res.id });
|
||||||
|
console.log(List);
|
||||||
|
|
||||||
|
this.sfNC.getProperty('/crmCustomerId')!.schema.enum = List;
|
||||||
|
this.sfNC.getProperty('/crmCustomerId')!.widget.reset(List);
|
||||||
|
this.sfNC.setValue('/crmCustomerId', res?.id);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
getProvinceData(value: any) {
|
getProvinceData(value: any) {
|
||||||
this.service.http.post(this.service.$api_getRegionDetailByCode, { regionCode: value }).subscribe(res => {
|
this.service.http.post(this.service.$api_getRegionDetailByCode, { regionCode: value }).subscribe(res => {
|
||||||
let enterpriseAddressCode: any = [];
|
let enterpriseAddressCode: any = [];
|
||||||
@ -661,10 +679,10 @@ export class NetworkFreightComponent implements OnInit {
|
|||||||
this.NCStatus = false;
|
this.NCStatus = false;
|
||||||
this.taxStatus = false;
|
this.taxStatus = false;
|
||||||
} else if (value.name === 'NC设置'){
|
} else if (value.name === 'NC设置'){
|
||||||
|
this.getNcSetData()
|
||||||
this.NCStatus = true;
|
this.NCStatus = true;
|
||||||
this.TicketStatus = false;
|
this.TicketStatus = false;
|
||||||
this.taxStatus = false;
|
this.taxStatus = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 新增
|
// 新增
|
||||||
|
|||||||
Reference in New Issue
Block a user