2017-12-21 13:09:55 +00:00
|
|
|
import ngModule from '../module';
|
2020-02-17 06:22:55 +00:00
|
|
|
import Component from 'core/lib/component';
|
|
|
|
class Controller extends Component {
|
|
|
|
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 06:22:55 +00:00
|
|
|
onCustomAgentAccept() {
|
|
|
|
return this.$http.post(`CustomsAgents`, this.newCustomsAgent)
|
|
|
|
.then(res => this.address.customsAgentFk = 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
|
|
|
});
|