Skip to content

Migration Guide To ERPNext Version 16

Raffael Meyer edited this page Aug 22, 2025 · 4 revisions

Timesheet billing via API

If you create Sales Invoices via API, you sometimes want to fetch unbilled timesheets from the linked project. So far, this was the default behavior. Now you'll need to make an additional API call: PUT /api/v2/document/Sales%20Invoice/SINV-0001/method/add_timesheet_data

New Party Bank Account via API

The whitelisted method erpnext.accounts.doctype.bank_account.bank_account.make_bank_account has been removed. It used to return a new Bank Account linked to a specific party. Instead, we use frappe.new_doc in the frontend directly. (Removal PR)

New Pricing Rule via API

The whitelisted method erpnext.accounts.doctype.pricing_rule.pricing_rule.make_pricing_rule and the frontend util erpnext.utils.make_pricing_rule have been removed. They used to return a new Pricing Rule linked to a specific Customer or Supplier. Instead, we use frappe.new_doc in the frontend directly. (Removal PR)

Clone this wiki locally