salix/modules/travel/front/index/index.js

40 lines
1.0 KiB
JavaScript
Raw Normal View History

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';
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
}
onCloneAccept(travel) {
const params = JSON.stringify({
ref: travel.ref,
2022-07-13 12:36:03 +00:00
agencyModeFk: travel.agencyModeFk,
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
}
compareDate(date) {
2023-01-16 14:18:24 +00:00
let today = Date.vnNew();
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
}
ngModule.vnComponent('vnTravelIndex', {
2018-11-13 06:44:03 +00:00
template: require('./index.html'),
controller: Controller
});