Merge pull request #35158 from rohitwaghchaure/fixed-internal-trasfer-condition
fix: internal transfer condition
This commit is contained in:
commit
2bf771683c
@ -379,7 +379,7 @@ class PurchaseReceipt(BuyingController):
|
|||||||
)
|
)
|
||||||
|
|
||||||
outgoing_amount = d.base_net_amount
|
outgoing_amount = d.base_net_amount
|
||||||
if self.is_internal_supplier and d.valuation_rate:
|
if self.is_internal_transfer() and d.valuation_rate:
|
||||||
outgoing_amount = abs(
|
outgoing_amount = abs(
|
||||||
frappe.db.get_value(
|
frappe.db.get_value(
|
||||||
"Stock Ledger Entry",
|
"Stock Ledger Entry",
|
||||||
|
@ -556,7 +556,7 @@ class update_entries_after(object):
|
|||||||
sle.voucher_type in ["Purchase Receipt", "Purchase Invoice"]
|
sle.voucher_type in ["Purchase Receipt", "Purchase Invoice"]
|
||||||
and sle.voucher_detail_no
|
and sle.voucher_detail_no
|
||||||
and sle.actual_qty < 0
|
and sle.actual_qty < 0
|
||||||
and frappe.get_cached_value(sle.voucher_type, sle.voucher_no, "is_internal_supplier")
|
and is_internal_transfer(sle)
|
||||||
):
|
):
|
||||||
sle.outgoing_rate = get_incoming_rate_for_inter_company_transfer(sle)
|
sle.outgoing_rate = get_incoming_rate_for_inter_company_transfer(sle)
|
||||||
|
|
||||||
@ -679,7 +679,7 @@ class update_entries_after(object):
|
|||||||
elif (
|
elif (
|
||||||
sle.voucher_type in ["Purchase Receipt", "Purchase Invoice"]
|
sle.voucher_type in ["Purchase Receipt", "Purchase Invoice"]
|
||||||
and sle.voucher_detail_no
|
and sle.voucher_detail_no
|
||||||
and frappe.get_cached_value(sle.voucher_type, sle.voucher_no, "is_internal_supplier")
|
and is_internal_transfer(sle)
|
||||||
):
|
):
|
||||||
rate = get_incoming_rate_for_inter_company_transfer(sle)
|
rate = get_incoming_rate_for_inter_company_transfer(sle)
|
||||||
else:
|
else:
|
||||||
@ -1609,3 +1609,15 @@ def get_incoming_rate_for_inter_company_transfer(sle) -> float:
|
|||||||
)
|
)
|
||||||
|
|
||||||
return rate
|
return rate
|
||||||
|
|
||||||
|
|
||||||
|
def is_internal_transfer(sle):
|
||||||
|
data = frappe.get_cached_value(
|
||||||
|
sle.voucher_type,
|
||||||
|
sle.voucher_no,
|
||||||
|
["is_internal_supplier", "represents_company", "company"],
|
||||||
|
as_dict=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
if data.is_internal_supplier and data.represents_company == data.company:
|
||||||
|
return True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user