Skip to content

Commit

Permalink
Fix: Trial Balance Report (PanJiaChen#2738)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricargame authored Oct 4, 2024
1 parent 8f875eb commit 6bfb9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ADempiere/Report/Data/DataReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ export default defineComponent({
zoom_windows: [],
isLoadingZoom: false
}
if (child.is_parent && child.cells[parentColumnKey].display_value === parentDisplayValue) {
if (child.is_parent && value === parentDisplayValue && !isEmptyValue(parentColumnKey)) {
newRow.cells[parentColumnKey].display_value = ''
}
return newRow
Expand Down

0 comments on commit 6bfb9f3

Please sign in to comment.