57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import ngModule from '../module';
|
|
import Descriptor from 'salix/components/descriptor';
|
|
|
|
class Controller extends Descriptor {
|
|
get invoiceIn() {
|
|
return this.entity;
|
|
}
|
|
|
|
set invoiceIn(value) {
|
|
this.entity = value;
|
|
}
|
|
|
|
get entryFilter() {
|
|
if (this.invoiceIn)
|
|
return JSON.stringify({invoiceInFk: this.invoiceIn.id});
|
|
|
|
return null;
|
|
}
|
|
|
|
get invoiceInFilter() {
|
|
if (this.invoiceIn)
|
|
return JSON.stringify({supplierFk: this.invoiceIn.supplierFk});
|
|
|
|
return null;
|
|
}
|
|
|
|
deleteInvoiceIn() {
|
|
return this.$http.delete(`InvoiceIns/${this.id}`)
|
|
.then(() => this.$state.go('invoiceIn.index'))
|
|
.then(() => this.vnApp.showSuccess(this.$t('InvoiceIn deleted')));
|
|
}
|
|
|
|
loadData() {
|
|
const filter = {
|
|
include: [
|
|
{
|
|
relation: 'company',
|
|
scope: {
|
|
fields: ['id', 'code']
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
return this.getData(`InvoiceIns/${this.id}`, {filter})
|
|
.then(res => this.entity = res.data);
|
|
}
|
|
}
|
|
|
|
ngModule.vnComponent('vnInvoiceInDescriptor', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
invoiceIn: '<'
|
|
}
|
|
});
|