Hi Team,
How does a finished goods item valuation rate calculating in ERPNEXT, can we change it with a standard price?
Please guide me in this, any information will be much appreciated.
Regards,
Shivansh
Hi Team,
How does a finished goods item valuation rate calculating in ERPNEXT, can we change it with a standard price?
Please guide me in this, any information will be much appreciated.
Regards,
Shivansh
Hi Shivansh,
In ERPNext, the Finished Goods valuation rate is calculated during the Stock Entry (Manufacture/Repack) process and is usually based on the Valuation Rate of raw materials + Additional Costs.
Here’s the default logic:
pgsql
Valuation Rate = (Total RM cost + Additional Costs) / Finished Goods Qty
If you want the Finished Goods valuation rate to always use a fixed “Standard Price” instead of being calculated from raw materials:
Standard Rate
:python
fg_item.valuation_rate = 500 # Your custom price
in a Stock Entry custom before_submit
hook.
Caution:
If you override valuation with a standard price, your stock valuation in accounts will no longer reflect actual RM costs, which may affect gross margins.