Closed nextchamp-saqib closed 7 months ago
Patch coverage: 91.01
% and project coverage change: +0.19
:tada:
Comparison is base (
0c958d6
) 56.70% compared to head (6e3c750
) 56.90%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
This pull request introduces a new feature that allows users to create and save custom columns for future use. Currently, users can create calculated columns within the query builder and save the query. However, if they wish to reuse a calculated column in another query, they have to recreate it.
This feature allows users to create a calculated column and save it directly in the corresponding table. For example, a user can create a calculated column called
Total Amount
in theSales Invoice
table, which sums the values ofbase_net_total
andbase_total_taxes_and_charges
. This calculated column can then be added to any query involving theSales Invoice
table.Save
button in Column Panel to save custom columns (?)