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() {
|
2020-04-30 10:48:52 +00:00
|
|
|
return this.entity;
|
2019-04-26 10:05:49 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 10:48:52 +00:00
|
|
|
set invoiceOut(value) {
|
|
|
|
this.entity = value;
|
2019-04-30 09:03:48 +00:00
|
|
|
}
|
|
|
|
|
2021-10-01 12:31:42 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:48:52 +00:00
|
|
|
loadData() {
|
|
|
|
const filter = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
relation: 'company',
|
|
|
|
scope: {
|
|
|
|
fields: ['id', 'code']
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
relation: 'client',
|
|
|
|
scope: {
|
2021-10-01 10:41:31 +00:00
|
|
|
fields: ['id', 'name', 'email']
|
2020-04-30 10:48:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
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: {
|
2021-10-01 12:31:42 +00:00
|
|
|
invoiceOut: '<',
|
2020-04-25 09:50:04 +00:00
|
|
|
}
|
2019-03-26 13:27:08 +00:00
|
|
|
});
|