fix: remove proprietorship and update it with individual

(cherry picked from commit c8ad6d1b2c)
This commit is contained in:
Sanket322
2024-07-12 18:58:14 +05:30
committed by Mergify
parent 55dc157694
commit 527781a588
6 changed files with 12 additions and 4 deletions

View File

@@ -134,7 +134,7 @@
"label": "Customer Type",
"oldfieldname": "customer_type",
"oldfieldtype": "Select",
"options": "Company\nIndividual\nProprietorship\nPartnership",
"options": "Company\nIndividual\nPartnership",
"reqd": 1
},
{

View File

@@ -52,7 +52,7 @@ class Customer(TransactionBase):
customer_pos_id: DF.Data | None
customer_primary_address: DF.Link | None
customer_primary_contact: DF.Link | None
customer_type: DF.Literal["Company", "Individual", "Proprietorship", "Partnership"]
customer_type: DF.Literal["Company", "Individual", "Partnership"]
default_bank_account: DF.Link | None
default_commission_rate: DF.Float
default_currency: DF.Link | None