Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: in payment_entry 'Unallocated Amount' cal is broken #36369

Merged
merged 1 commit into from
Jul 30, 2023

Conversation

ashish-greycube
Copy link
Contributor

Business case:
for a customer who is paying more than his invoices amt, Unallocated Amount calculation should happen.
at present it is not happening

Paid Amount : amt he is paying
Total Allocated Amount : amt total as per Sales Invoice
Unallocated Amount : extra amt, as he is paying more than total of pending
ie.
Unallocated Amount=Paid Amount-Total Allocated Amount

Actual :
Unallocated Amount remains empty

Expected:
Unallocated Amount=Paid Amount-Total Allocated Amount

Reason:
There is frm.doc.base_total_taxes_and_charges field used in calculation, which is undefined till the Payment Entry is saved.
hence, when this field is referred as part of calculation, it makes the entire calculation result as NaN
Ex:
unallocated_amount = (frm.doc.base_received_amount + total_deductions + frm.doc.base_total_taxes_and_charges - frm.doc.base_total_allocated_amount) / frm.doc.source_exchange_rate;
As, frm.doc.base_total_taxes_and_charges --> is undefined,
unallocated_amount result in NaN

Fix:
flt(frm.doc.base_total_taxes_and_charges) --> flt converts undefined to 0, and hence unallocated_amount calcuation becomes correct

Reference:
We have done similar fix.
#35239

GIF Before Fix
Peek 2023-07-28 11-28

GIF After Fix
Peek 2023-07-28 11-40

@ruthra-kumar ruthra-kumar self-assigned this Jul 28, 2023
@deepeshgarg007 deepeshgarg007 added the backport version-14-hotfix backport to version 14 label Jul 30, 2023
@deepeshgarg007 deepeshgarg007 merged commit eeddeee into frappe:develop Jul 30, 2023
5 checks passed
deepeshgarg007 pushed a commit that referenced this pull request Jul 30, 2023
fix: in payment_entry 'Unallocated Amount' cal is broken

(cherry picked from commit f9fa34f)

Co-authored-by: Ashish Shah <mr.ashish.shah@gmail.com>
frappe-pr-bot pushed a commit that referenced this pull request Aug 1, 2023
# [14.33.0](v14.32.1...v14.33.0) (2023-08-01)

### Bug Fixes

* allow fully depreciated existing assets ([#36378](#36378)) ([43b85c5](43b85c5))
* change fieldtype from Currency to Float for the valuation rate in the stock report ([93bd4c7](93bd4c7))
* cost center filter for fetching payments ([c9daa85](c9daa85))
* Defined "Open" Status as default (backport [#36421](#36421)) ([#36424](#36424)) ([33a9477](33a9477))
* filter by cost center in trial balance ([02428b4](02428b4))
* german translations ([9c8e2a3](9c8e2a3))
* GL Entries should not be splitted based on cost center allocation in PCV ([ade13e6](ade13e6))
* group item reorder by (warehouse, material_request_type) (backport [#35818](#35818)) ([#36425](#36425)) ([516191b](516191b))
* Ignore account closing balance for financial statement ([800417e](800417e))
* in payment_entry 'Unallocated Amount' cal is broken ([#36369](#36369)) ([cd3b85c](cd3b85c))
* incorrect `idx` on JE's after reconciliation ([80eb875](80eb875))
* incorrect qty set in the serial no picker ([57b19a5](57b19a5))
* incorrect usage `get_cached_value` on single doctypes ([8f72a68](8f72a68))
* **Item Group:** allow root deletion ([1a6be5e](1a6be5e))
* job card suggest holiday as start date (backport [#35958](#35958)) ([#36423](#36423)) ([29ddd26](29ddd26))
* Job Card validation fixed when displaying total completed quantity ([7b3bcd3](7b3bcd3))
* multiple issues related to Production Plan (backport [#36377](#36377)) ([#36381](#36381)) ([a799e1b](a799e1b))
* not able to make material request (backport [#36416](#36416)) ([#36426](#36426)) ([99e7406](99e7406))
* only publish repost progress to doc subscriber (backport [#36400](#36400)) ([#36402](#36402)) ([32bdb7c](32bdb7c))
* overallocation validation misfire on normal invoices ([#36349](#36349)) ([09af485](09af485))
* paid_amount when the group is mode of payment ([50ef358](50ef358))
* process_owner is not link User (backport [#36420](#36420)) ([#36422](#36422)) ([289dc36](289dc36))
* removed "fetch_from" (backport [#36365](#36365)) ([#36386](#36386)) ([6d051f5](6d051f5))
* root type in account map for balance sheet ([#36303](#36303)) ([5b56296](5b56296))
* show invoices name instead of object address ([e802f0c](e802f0c))
* show tds & tcs separately ([619b0fe](619b0fe))
* test with None conditon in PE ([479cab0](479cab0))
* typo in loyalty program throw message ([#36432](#36432)) ([782a4d1](782a4d1))

### Features

* add party type filter ([32fea64](32fea64))

### Performance Improvements

* avoid full table scan in sle count check ([#36428](#36428)) ([04f9915](04f9915))
* move project status reminder to hourly (backport [#36372](#36372)) ([#36373](#36373)) ([4ac60cd](4ac60cd))
* use `LEFT JOIN` instead of `NOT EXISTS` (backport [#36221](#36221)) ([#36383](#36383)) ([26a0b3b](26a0b3b))
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Feb 12, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
backport version-14-hotfix backport to version 14
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants