This commit is contained in:
parent
212b848131
commit
65646d3b65
|
@ -58,6 +58,15 @@ class Controller extends Section {
|
|||
});
|
||||
}
|
||||
|
||||
selectedValidServices() {
|
||||
if (!this.services) return;
|
||||
|
||||
const selectedServices = this.selectedServices();
|
||||
return selectedServices.filter(service => {
|
||||
return service.id != undefined;
|
||||
});
|
||||
}
|
||||
|
||||
createRefund() {
|
||||
const services = this.selectedServices();
|
||||
if (!services) return;
|
||||
|
|
Loading…
Reference in New Issue