mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-23 15:09:20 +00:00
Merge pull request #35355 from ruthra-kumar/fix_possible_type_erro_on_so_creation_from_quotation
fix: possible type error on quotation -> sales order creation
This commit is contained in:
@@ -288,7 +288,7 @@ def _make_sales_order(source_name, target_doc=None, ignore_permissions=False):
|
|||||||
)
|
)
|
||||||
|
|
||||||
# sales team
|
# sales team
|
||||||
for d in customer.get("sales_team", []):
|
for d in customer.get("sales_team") or []:
|
||||||
target.append(
|
target.append(
|
||||||
"sales_team",
|
"sales_team",
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user