2018-03-21 14:51:09 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-18 07:35:59 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-03-21 14:51:09 +00:00
|
|
|
|
2020-03-18 07:35:59 +00:00
|
|
|
class Controller extends Section {
|
2020-04-28 12:26:02 +00:00
|
|
|
onDialogAccept(id) {
|
|
|
|
return this.$http.delete(`Expeditions/${id}`)
|
|
|
|
.then(() => this.$.model.refresh());
|
2018-03-21 14:51:09 +00:00
|
|
|
}
|
2022-05-04 08:35:31 +00:00
|
|
|
|
|
|
|
showLog(expedition) {
|
|
|
|
this.expedition = expedition;
|
|
|
|
this.$.statusLog.show();
|
|
|
|
}
|
2022-09-22 12:58:38 +00:00
|
|
|
|
|
|
|
get checked() {
|
|
|
|
const rows = this.$.model.data || [];
|
|
|
|
const checkedRows = [];
|
|
|
|
for (let row of rows) {
|
|
|
|
if (row.checked)
|
|
|
|
checkedRows.push(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
return checkedRows;
|
|
|
|
}
|
2022-09-23 06:50:11 +00:00
|
|
|
|
|
|
|
get totalChecked() {
|
|
|
|
return this.checked.length;
|
|
|
|
}
|
2018-03-21 14:51:09 +00:00
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTicketExpedition', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-09-04 09:49:00 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
2018-10-29 08:39:37 +00:00
|
|
|
ticket: '<',
|
|
|
|
},
|
2018-03-21 14:51:09 +00:00
|
|
|
});
|