2017-12-21 13:09:55 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-17 13:43:46 +00:00
|
|
|
import Section from 'salix/components/section';
|
|
|
|
|
|
|
|
class Controller extends Section {
|
2020-02-17 06:22:55 +00:00
|
|
|
showIntrastat(event) {
|
|
|
|
if (event.defaultPrevented) return;
|
|
|
|
event.preventDefault();
|
2017-12-21 13:09:55 +00:00
|
|
|
|
2020-02-17 06:22:55 +00:00
|
|
|
this.newIntrastat = {
|
|
|
|
taxClassFk: this.item.taxClassFk
|
|
|
|
};
|
|
|
|
this.$.intrastat.show();
|
2018-02-20 13:30:02 +00:00
|
|
|
}
|
2018-08-01 07:47:34 +00:00
|
|
|
|
2020-02-17 11:47:03 +00:00
|
|
|
onIntrastatAccept() {
|
|
|
|
const query = `Items/${this.$params.id}/createIntrastat`;
|
|
|
|
return this.$http.patch(query, this.newIntrastat)
|
|
|
|
.then(res => this.item.intrastatFk = res.data.id);
|
2018-02-20 13:30:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-16 12:30:01 +00:00
|
|
|
ngModule.component('vnItemBasicData', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2017-12-21 13:09:55 +00:00
|
|
|
bindings: {
|
|
|
|
item: '<'
|
2018-02-20 13:30:02 +00:00
|
|
|
},
|
2018-05-25 08:03:45 +00:00
|
|
|
controller: Controller
|
2017-12-21 13:09:55 +00:00
|
|
|
});
|