Merge pull request #51661 from rohitwaghchaure/fixed-single-table-for-better-performance

refactor: single table for better performance
This commit is contained in:
rohitwaghchaure
2026-01-11 14:51:50 +05:30
committed by GitHub
8 changed files with 138 additions and 29 deletions

View File

@@ -11,7 +11,9 @@ def execute():
SABE.voucher_type = SABB.voucher_type,
SABE.voucher_no = SABB.voucher_no,
SABE.voucher_detail_no = SABB.voucher_detail_no,
SABE.type_of_transaction = SABB.type_of_transaction
SABE.type_of_transaction = SABB.type_of_transaction,
SABE.is_cancelled = SABB.is_cancelled,
SABE.item_code = SABB.item_code
WHERE SABE.parent = SABB.name
"""
)