51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
|
import ngModule from '../module';
|
||
|
|
||
|
class Controller {
|
||
|
constructor($http, $state) {
|
||
|
this.$http = $http;
|
||
|
this.$state = $state;
|
||
|
}
|
||
|
|
||
|
getOrder() {
|
||
|
let filter = {
|
||
|
include: [
|
||
|
{relation: 'agencyMode', scope: {fields: ['name']}},
|
||
|
{relation: 'address', scope: {fields: ['nickname']}},
|
||
|
{relation: 'rows', scope: {fields: ['id']}},
|
||
|
{
|
||
|
relation: 'client',
|
||
|
scope: {
|
||
|
fields: ['salesPersonFk', 'name', 'isActive', 'isFreezed', 'isTaxDataChecked'],
|
||
|
include: {
|
||
|
relation: 'salesPerson',
|
||
|
fields: ['firstName', 'name']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
let json = encodeURIComponent(JSON.stringify(filter));
|
||
|
let query = `/order/api/Orders/${this.$state.params.id}?filter=${json}`;
|
||
|
this.$http.get(query).then(res => {
|
||
|
if (res.data)
|
||
|
this.order = res.data;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
$onInit() {
|
||
|
this.getOrder();
|
||
|
}
|
||
|
|
||
|
reload() {
|
||
|
this.getOrder();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Controller.$inject = ['$http', '$state'];
|
||
|
|
||
|
ngModule.component('vnOrderCard', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller
|
||
|
});
|