Bug #403
openOpening balance and closing balance position issue when do grouping
Start date:
10/29/2024
Due date:
% Done:
30%
Estimated time:
Owner(Agency):
Travvise
Time Taken(HH):
Responsible User:
Module:
Customer Document Wise SOA
Tested By:
Code Reviewed By:
Description
When grouping done based on main ledger, service and date the opening balance and closing balance position changes.
---customer item wise SOA
---customer document wise SOA
Subtasks
Related issues
Updated by Anil KV 21 days ago
Sorting then Balance Column Re Calculate
*Discus with Amal
*Try SOA
<dx-data-grid [dataSource]="dataSource"> <dxi-column dataField="originalValue" caption="Original Value"></dxi-column> <dxi-column caption="Recalculated Value" [calculateCellValue]="recalculateValue"></dxi-column> </dx-data-grid> recalculateValue = (data) => { // Custom logic to recalculate the value based on sorted data return data.originalValue * 2; // Example: doubling the original value };