salix/modules/invoiceOut/front/descriptor/index.js

53 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-03-26 13:27:08 +00:00
import ngModule from '../module';
2020-04-25 09:50:04 +00:00
import Descriptor from 'salix/components/descriptor';
2019-03-26 13:27:08 +00:00
2020-04-25 09:50:04 +00:00
class Controller extends Descriptor {
2019-03-26 13:27:08 +00:00
get invoiceOut() {
return this.entity;
}
set invoiceOut(value) {
this.entity = value;
}
get hasInvoicing() {
return this.aclService.hasAny(['invoicing']);
}
2020-05-29 09:10:58 +00:00
get filter() {
if (this.invoiceOut)
return JSON.stringify({refFk: this.invoiceOut.ref});
return null;
}
loadData() {
const filter = {
include: [
{
relation: 'company',
scope: {
fields: ['id', 'code']
}
}, {
relation: 'client',
scope: {
fields: ['id', 'name', 'email']
}
}
]
};
return this.getData(`InvoiceOuts/${this.id}`, {filter})
.then(res => this.entity = res.data);
}
2019-03-26 13:27:08 +00:00
}
2020-04-25 09:50:04 +00:00
ngModule.vnComponent('vnInvoiceOutDescriptor', {
2019-03-26 13:27:08 +00:00
template: require('./index.html'),
2020-04-25 09:50:04 +00:00
controller: Controller,
2019-03-26 13:27:08 +00:00
bindings: {
invoiceOut: '<',
2020-04-25 09:50:04 +00:00
}
2019-03-26 13:27:08 +00:00
});