salix/client/order/src/card/index.js

63 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-07-18 12:21:58 +00:00
import ngModule from '../module';
class Controller {
constructor($http, $state) {
this.$http = $http;
this.$state = $state;
2018-07-24 09:28:20 +00:00
this.order = {};
this.filter = {
2018-07-18 12:21:58 +00:00
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']
}
}
}
]
};
}
2018-07-18 12:21:58 +00:00
2018-10-03 06:00:19 +00:00
$onInit() {
this.getCard();
}
getCard() {
let json = encodeURIComponent(JSON.stringify(this.filter));
2018-07-18 12:21:58 +00:00
let query = `/order/api/Orders/${this.$state.params.id}?filter=${json}`;
this.$http.get(query).then(res => {
if (res.data) {
2018-11-30 10:45:17 +00:00
if (res.data.rows.length == 0)
delete res.data.rows;
2018-07-18 12:21:58 +00:00
this.order = res.data;
this.getTotal();
}
2018-07-18 12:21:58 +00:00
});
2018-07-24 10:55:10 +00:00
}
2018-07-20 14:32:34 +00:00
2018-10-03 06:00:19 +00:00
reload() {
this.getCard();
}
2018-07-24 10:55:10 +00:00
getTotal() {
let query = `/order/api/Orders/${this.$state.params.id}/getTotal`;
2018-07-20 14:32:34 +00:00
this.$http.get(query).then(res => {
2018-11-30 10:45:17 +00:00
if (res.data)
2018-10-10 10:55:04 +00:00
this.order.total = res.data;
2018-07-20 14:32:34 +00:00
});
2018-07-18 12:21:58 +00:00
}
}
Controller.$inject = ['$http', '$state'];
ngModule.component('vnOrderCard', {
template: require('./index.html'),
controller: Controller
});