diff --git a/erpnext/projects/doctype/timesheet/timesheet.py b/erpnext/projects/doctype/timesheet/timesheet.py index 2ad6e1ce8e7c573b8e64d7b9e1acee99f44a99d0..303fd8ab551b6599984bf2689f113df180132f1d 100644 --- a/erpnext/projects/doctype/timesheet/timesheet.py +++ b/erpnext/projects/doctype/timesheet/timesheet.py @@ -389,6 +389,9 @@ def make_sales_invoice(source_name, item_code=None, customer=None, currency=None target.project = timesheet.parent_project if customer: target.customer = customer + default_price_list = frappe.get_value("Customer", customer, "default_price_list") + if default_price_list: + target.selling_price_list = default_price_list if currency: target.currency = currency