mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-05 21:29:11 +00:00
fix: classify Stock Delivered But Not Billed as a Current Asset
This account holds a debit balance (inventory value delivered but not yet invoiced) and clears to COGS on Sales Invoice, so it is economically a short-term clearing asset rather than a trade payable. Move it from the Stock Liabilities group to Stock Assets under Current Assets, with account_category "Stock Assets" (and account_number 1420 in the numbered chart). The account_type "Stock Delivered But Not Billed" is unchanged, so posting logic in Sales Invoice and Delivery Note continues to key off the correct account.
This commit is contained in:
@@ -35,6 +35,10 @@ def get():
|
|||||||
_("Short-term Investments"): {"account_category": "Short-term Investments"},
|
_("Short-term Investments"): {"account_category": "Short-term Investments"},
|
||||||
_("Stock Assets"): {
|
_("Stock Assets"): {
|
||||||
_("Stock In Hand"): {"account_type": "Stock", "account_category": "Stock Assets"},
|
_("Stock In Hand"): {"account_type": "Stock", "account_category": "Stock Assets"},
|
||||||
|
_("Stock Delivered But Not Billed"): {
|
||||||
|
"account_type": "Stock Delivered But Not Billed",
|
||||||
|
"account_category": "Stock Assets",
|
||||||
|
},
|
||||||
"account_type": "Stock",
|
"account_type": "Stock",
|
||||||
"account_category": "Stock Assets",
|
"account_category": "Stock Assets",
|
||||||
},
|
},
|
||||||
@@ -162,10 +166,6 @@ def get():
|
|||||||
"account_type": "Stock Received But Not Billed",
|
"account_type": "Stock Received But Not Billed",
|
||||||
"account_category": "Trade Payables",
|
"account_category": "Trade Payables",
|
||||||
},
|
},
|
||||||
_("Stock Delivered But Not Billed"): {
|
|
||||||
"account_type": "Stock Delivered But Not Billed",
|
|
||||||
"account_category": "Trade Payables",
|
|
||||||
},
|
|
||||||
_("Asset Received But Not Billed"): {
|
_("Asset Received But Not Billed"): {
|
||||||
"account_type": "Asset Received But Not Billed",
|
"account_type": "Asset Received But Not Billed",
|
||||||
"account_category": "Trade Payables",
|
"account_category": "Trade Payables",
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ def get():
|
|||||||
"account_number": "1410",
|
"account_number": "1410",
|
||||||
"account_category": "Stock Assets",
|
"account_category": "Stock Assets",
|
||||||
},
|
},
|
||||||
|
_("Stock Delivered But Not Billed"): {
|
||||||
|
"account_type": "Stock Delivered But Not Billed",
|
||||||
|
"account_number": "1420",
|
||||||
|
"account_category": "Stock Assets",
|
||||||
|
},
|
||||||
"account_type": "Stock",
|
"account_type": "Stock",
|
||||||
"account_number": "1400",
|
"account_number": "1400",
|
||||||
"account_category": "Stock Assets",
|
"account_category": "Stock Assets",
|
||||||
@@ -281,11 +286,6 @@ def get():
|
|||||||
"account_number": "2211",
|
"account_number": "2211",
|
||||||
"account_category": "Trade Payables",
|
"account_category": "Trade Payables",
|
||||||
},
|
},
|
||||||
_("Stock Delivered But Not Billed"): {
|
|
||||||
"account_type": "Stock Delivered But Not Billed",
|
|
||||||
"account_number": "2212",
|
|
||||||
"account_category": "Trade Payables",
|
|
||||||
},
|
|
||||||
"account_number": "2200",
|
"account_number": "2200",
|
||||||
},
|
},
|
||||||
_("Duties and Taxes"): {
|
_("Duties and Taxes"): {
|
||||||
|
|||||||
Reference in New Issue
Block a user