Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
af5b8672c3
2 changed files with 6 additions and 0 deletions
|
|
@ -166,6 +166,9 @@ export default {
|
|||
}
|
||||
},
|
||||
methods: {
|
||||
buildDate(date) {
|
||||
return `${date[0]}-${date[1].toString().padStart(2, '0')}-${date[2].toString().padStart(2, '0')} ${date[3].toString().padStart(2, '0')}:${date[4].toString().padStart(2, '0')}:${date[5].toString().padStart(2, '0')}`
|
||||
},
|
||||
async fetchFile(id) {
|
||||
logger.info(`Fetching file ${id}`);
|
||||
this.bulkOperationStore.downloadBulkFile(id);
|
||||
|
|
|
|||
|
|
@ -183,6 +183,9 @@ export default {
|
|||
this.pagination = this.rateType === 'container' ? this.containerRateStore.getPagination : this.matrixRateStore.getPagination;
|
||||
},
|
||||
methods: {
|
||||
buildDate(date) {
|
||||
return `${date[0]}-${date[1].toString().padStart(2, '0')}-${date[2].toString().padStart(2, '0')} ${date[3].toString().padStart(2, '0')}:${date[4].toString().padStart(2, '0')}:${date[5].toString().padStart(2, '0')}`
|
||||
},
|
||||
async fetch(query) {
|
||||
|
||||
query.periodId = this.selectedPeriod;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue