-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Migration Guide To ERPNext Version 16
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
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)
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)