2020-10-20 07:44:44 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
import Section from 'salix/components/section';
|
|
|
|
import './style.scss';
|
|
|
|
|
|
|
|
class Controller extends Section {
|
|
|
|
$onChanges() {
|
|
|
|
if (!this.supplier)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.getSummary();
|
|
|
|
}
|
|
|
|
|
|
|
|
getSummary() {
|
2020-10-26 07:38:43 +00:00
|
|
|
return this.$http.get(`Suppliers/${this.supplier.id}/getSummary`).then(response => {
|
2020-10-20 07:44:44 +00:00
|
|
|
this.summary = response.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.vnComponent('vnSupplierSummary', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
supplier: '<'
|
|
|
|
}
|
|
|
|
});
|