2018-11-13 06:44:03 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-16 17:54:22 +00:00
|
|
|
import Section from 'salix/components/section';
|
2023-03-02 12:55:47 +00:00
|
|
|
import './style.scss';
|
2018-11-13 06:44:03 +00:00
|
|
|
|
2020-03-16 17:54:22 +00:00
|
|
|
export default class Controller extends Section {
|
2020-04-25 09:50:04 +00:00
|
|
|
preview(travel) {
|
2019-10-24 10:49:18 +00:00
|
|
|
this.travelSelected = travel;
|
|
|
|
this.$.summary.show();
|
2019-12-20 06:55:00 +00:00
|
|
|
}
|
|
|
|
|
2020-03-16 17:33:39 +00:00
|
|
|
onCloneAccept(travel) {
|
|
|
|
const params = JSON.stringify({
|
|
|
|
ref: travel.ref,
|
2022-07-13 12:36:03 +00:00
|
|
|
agencyModeFk: travel.agencyModeFk,
|
2020-03-16 17:33:39 +00:00
|
|
|
shipped: travel.shipped,
|
|
|
|
landed: travel.landed,
|
|
|
|
warehouseInFk: travel.warehouseInFk,
|
|
|
|
warehouseOutFk: travel.warehouseOutFk
|
|
|
|
});
|
|
|
|
this.$state.go('travel.create', {q: params});
|
2019-12-20 06:55:00 +00:00
|
|
|
}
|
2020-11-13 12:04:22 +00:00
|
|
|
|
|
|
|
compareDate(date) {
|
2023-01-16 14:18:24 +00:00
|
|
|
let today = Date.vnNew();
|
2020-11-13 12:04:22 +00:00
|
|
|
today.setHours(0, 0, 0, 0);
|
|
|
|
|
|
|
|
date = new Date(date);
|
|
|
|
date.setHours(0, 0, 0, 0);
|
|
|
|
|
|
|
|
const timeDifference = today - date;
|
|
|
|
if (timeDifference == 0) return 'warning';
|
|
|
|
if (timeDifference < 0) return 'success';
|
|
|
|
}
|
2018-11-13 06:44:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTravelIndex', {
|
2018-11-13 06:44:03 +00:00
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
|
|
|
});
|