2018-03-14 10:41:19 +00:00
|
|
|
import ngModule from '../module';
|
2019-11-10 10:08:44 +00:00
|
|
|
import ModuleCard from 'salix/components/module-card';
|
2018-03-14 10:41:19 +00:00
|
|
|
|
2019-11-10 10:08:44 +00:00
|
|
|
class Controller extends ModuleCard {
|
|
|
|
reload() {
|
|
|
|
let filter = {
|
2018-04-10 09:14:33 +00:00
|
|
|
include: [
|
2019-03-29 06:29:09 +00:00
|
|
|
{relation: 'address'},
|
2019-01-21 07:44:21 +00:00
|
|
|
{relation: 'ship'},
|
|
|
|
{relation: 'stowaway'},
|
2018-04-10 09:14:33 +00:00
|
|
|
{
|
2019-11-10 10:08:44 +00:00
|
|
|
relation: 'warehouse',
|
|
|
|
scope: {fields: ['name']}
|
|
|
|
}, {
|
|
|
|
relation: 'invoiceOut',
|
|
|
|
scope: {fields: ['id']}
|
|
|
|
}, {
|
|
|
|
relation: 'agencyMode',
|
|
|
|
scope: {fields: ['name']}
|
|
|
|
}, {
|
2018-04-10 09:14:33 +00:00
|
|
|
relation: 'client',
|
|
|
|
scope: {
|
2019-11-06 07:20:45 +00:00
|
|
|
fields: [
|
|
|
|
'salesPersonFk',
|
|
|
|
'name',
|
|
|
|
'isActive',
|
|
|
|
'isFreezed',
|
|
|
|
'isTaxDataChecked',
|
|
|
|
'credit',
|
|
|
|
'email'
|
|
|
|
],
|
2018-04-10 09:14:33 +00:00
|
|
|
include: {
|
|
|
|
relation: 'salesPerson',
|
2019-01-31 13:14:39 +00:00
|
|
|
scope: {
|
|
|
|
fields: ['userFk'],
|
|
|
|
include: {
|
|
|
|
relation: 'user',
|
|
|
|
scope: {
|
|
|
|
fields: ['nickname']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-29 07:33:53 +00:00
|
|
|
},
|
|
|
|
},
|
2019-11-10 10:08:44 +00:00
|
|
|
}, {
|
2018-11-14 13:33:25 +00:00
|
|
|
relation: 'state',
|
2018-04-10 09:14:33 +00:00
|
|
|
scope: {
|
|
|
|
fields: ['stateFk'],
|
|
|
|
include: {
|
|
|
|
relation: 'state',
|
2018-11-14 13:33:25 +00:00
|
|
|
fields: ['id', 'name'],
|
|
|
|
}
|
2018-10-29 07:33:53 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2018-03-14 10:41:19 +00:00
|
|
|
};
|
2018-05-31 12:48:10 +00:00
|
|
|
|
2019-11-10 10:08:44 +00:00
|
|
|
this.$http.get(`Tickets/${this.$params.id}`, {filter})
|
|
|
|
.then(res => this.onData(res.data));
|
2018-10-03 06:00:19 +00:00
|
|
|
}
|
|
|
|
|
2019-11-10 10:08:44 +00:00
|
|
|
onData(data) {
|
|
|
|
this.ticket = data;
|
|
|
|
this.$http.get(`Clients/${data.client.id}/getDebt`)
|
|
|
|
.then(res => this.ticket.client.debt = res.data.debt);
|
2018-05-08 07:30:55 +00:00
|
|
|
}
|
2018-03-14 10:41:19 +00:00
|
|
|
}
|
2018-05-25 08:03:45 +00:00
|
|
|
|
2018-03-14 10:41:19 +00:00
|
|
|
ngModule.component('vnTicketCard', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-11-14 13:33:25 +00:00
|
|
|
controller: Controller
|
2018-03-14 10:41:19 +00:00
|
|
|
});
|