Skip to content

Commit

Permalink
Fix: Date Range (PanJiaChen#2097)
Browse files Browse the repository at this point in the history
  • Loading branch information
elsiosanchez authored Apr 9, 2024
1 parent 849519e commit 0cb5b1d
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/components/ADempiere/FieldDefinition/FieldDate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ import {

// Utils and Helper Methods
import { getTypeOfValue, isEmptyValue } from '@/utils/ADempiere/valueUtils.js'
import { changeTimeZone } from '@/utils/ADempiere/formatValue/dateFormat'

/**
* TODO: Improves set values into store and set in vales in component when change operators
Expand Down Expand Up @@ -227,14 +226,6 @@ export default {
startValue = undefined
endValue = undefined
}
if (typeof startValue !== 'object' && startValue !== undefined && this.isRenderRange) {
startValue = changeTimeZone({
value: startValue
})
endValue = changeTimeZone({
value: endValue
})
}

this.$store.commit('updateValueOfField', {
parentUuid: this.metadata.parentUuid,
Expand Down

0 comments on commit 0cb5b1d

Please sign in to comment.