mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-14 23:18:40 +00:00
@@ -13,6 +13,7 @@
|
|||||||
"naming_series",
|
"naming_series",
|
||||||
"supplier_type",
|
"supplier_type",
|
||||||
"supplier_name",
|
"supplier_name",
|
||||||
|
"alias",
|
||||||
"gender",
|
"gender",
|
||||||
"column_break0",
|
"column_break0",
|
||||||
"supplier_group",
|
"supplier_group",
|
||||||
@@ -101,6 +102,13 @@
|
|||||||
"oldfieldtype": "Data",
|
"oldfieldtype": "Data",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "alias",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_global_search": 1,
|
||||||
|
"label": "Alias",
|
||||||
|
"unique": 1
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "country",
|
"fieldname": "country",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
@@ -522,7 +530,7 @@
|
|||||||
"link_fieldname": "party"
|
"link_fieldname": "party"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"modified": "2026-05-29 16:52:59.441272",
|
"modified": "2026-06-22 12:23:09.241125",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Buying",
|
"module": "Buying",
|
||||||
"name": "Supplier",
|
"name": "Supplier",
|
||||||
@@ -582,7 +590,7 @@
|
|||||||
],
|
],
|
||||||
"quick_entry": 1,
|
"quick_entry": 1,
|
||||||
"row_format": "Dynamic",
|
"row_format": "Dynamic",
|
||||||
"search_fields": "supplier_group",
|
"search_fields": "supplier_group, alias",
|
||||||
"show_name_in_global_search": 1,
|
"show_name_in_global_search": 1,
|
||||||
"sort_field": "creation",
|
"sort_field": "creation",
|
||||||
"sort_order": "ASC",
|
"sort_order": "ASC",
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ class Supplier(TransactionBase):
|
|||||||
from erpnext.utilities.doctype.portal_user.portal_user import PortalUser
|
from erpnext.utilities.doctype.portal_user.portal_user import PortalUser
|
||||||
|
|
||||||
accounts: DF.Table[PartyAccount]
|
accounts: DF.Table[PartyAccount]
|
||||||
|
alias: DF.Data | None
|
||||||
allow_purchase_invoice_creation_without_purchase_order: DF.Check
|
allow_purchase_invoice_creation_without_purchase_order: DF.Check
|
||||||
allow_purchase_invoice_creation_without_purchase_receipt: DF.Check
|
allow_purchase_invoice_creation_without_purchase_receipt: DF.Check
|
||||||
companies: DF.Table[AllowedToTransactWith]
|
companies: DF.Table[AllowedToTransactWith]
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
"naming_series",
|
"naming_series",
|
||||||
"customer_type",
|
"customer_type",
|
||||||
"customer_name",
|
"customer_name",
|
||||||
|
"alias",
|
||||||
"gender",
|
"gender",
|
||||||
"column_break0",
|
"column_break0",
|
||||||
"customer_group",
|
"customer_group",
|
||||||
@@ -121,6 +122,13 @@
|
|||||||
"reqd": 1,
|
"reqd": 1,
|
||||||
"search_index": 1
|
"search_index": 1
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "alias",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"in_global_search": 1,
|
||||||
|
"label": "Alias",
|
||||||
|
"unique": 1
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"depends_on": "eval:doc.customer_type == 'Individual'",
|
"depends_on": "eval:doc.customer_type == 'Individual'",
|
||||||
"fieldname": "gender",
|
"fieldname": "gender",
|
||||||
@@ -647,7 +655,7 @@
|
|||||||
"link_fieldname": "party"
|
"link_fieldname": "party"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"modified": "2026-05-29 16:52:59.441272",
|
"modified": "2026-06-22 12:23:19.196991",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Selling",
|
"module": "Selling",
|
||||||
"name": "Customer",
|
"name": "Customer",
|
||||||
@@ -726,7 +734,7 @@
|
|||||||
],
|
],
|
||||||
"quick_entry": 1,
|
"quick_entry": 1,
|
||||||
"row_format": "Dynamic",
|
"row_format": "Dynamic",
|
||||||
"search_fields": "customer_group,territory, mobile_no,primary_address",
|
"search_fields": "customer_group,territory, mobile_no,primary_address, alias",
|
||||||
"show_name_in_global_search": 1,
|
"show_name_in_global_search": 1,
|
||||||
"sort_field": "creation",
|
"sort_field": "creation",
|
||||||
"sort_order": "DESC",
|
"sort_order": "DESC",
|
||||||
|
|||||||
@@ -49,6 +49,7 @@ class Customer(TransactionBase):
|
|||||||
|
|
||||||
account_manager: DF.Link | None
|
account_manager: DF.Link | None
|
||||||
accounts: DF.Table[PartyAccount]
|
accounts: DF.Table[PartyAccount]
|
||||||
|
alias: DF.Data | None
|
||||||
companies: DF.Table[AllowedToTransactWith]
|
companies: DF.Table[AllowedToTransactWith]
|
||||||
credit_limits: DF.Table[CustomerCreditLimit]
|
credit_limits: DF.Table[CustomerCreditLimit]
|
||||||
customer_details: DF.Text | None
|
customer_details: DF.Text | None
|
||||||
|
|||||||
Reference in New Issue
Block a user