amsdal_crm 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
amsdal_crm/__about__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.1.1'
1
+ __version__ = '0.1.3'
@@ -60,7 +60,7 @@ def _custom_field_def_to_control(field_def: Any) -> dict[str, Any]:
60
60
  A dictionary representing the frontend control configuration
61
61
  """
62
62
  control: dict[str, Any] = {
63
- 'name': f'custom_fields.{field_def.field_name}',
63
+ 'name': f'{field_def.field_name}',
64
64
  'label': field_def.field_label,
65
65
  'required': field_def.is_required,
66
66
  }
@@ -109,6 +109,8 @@ def _add_custom_fields_to_control(control: dict[str, Any], custom_field_controls
109
109
  # Update the custom_fields control to be a group with nested controls
110
110
  custom_fields_control['type'] = 'group'
111
111
  custom_fields_control['controls'] = custom_field_controls
112
+ if 'control' in custom_fields_control:
113
+ custom_fields_control.pop('control', None)
112
114
  else:
113
115
  # Add custom fields as a new group at the end
114
116
  control['controls'].append(
@@ -89,7 +89,7 @@ class Account(TimestampMixin, Model):
89
89
  if self.custom_fields:
90
90
  from amsdal_crm.services.custom_field_service import CustomFieldService
91
91
 
92
- self.custom_fields = CustomFieldService.validate_custom_fields('Account', self.custom_fields)
92
+ self.custom_fields = await CustomFieldService.avalidate_custom_fields('Account', self.custom_fields)
93
93
  await super().apre_create()
94
94
 
95
95
  def pre_update(self) -> None:
@@ -109,7 +109,7 @@ class Account(TimestampMixin, Model):
109
109
  if self.custom_fields:
110
110
  from amsdal_crm.services.custom_field_service import CustomFieldService
111
111
 
112
- self.custom_fields = CustomFieldService.validate_custom_fields('Account', self.custom_fields)
112
+ self.custom_fields = await CustomFieldService.avalidate_custom_fields('Account', self.custom_fields)
113
113
 
114
114
  # Call parent to handle timestamps
115
115
  await super().apre_update()
@@ -124,4 +124,4 @@ class Account(TimestampMixin, Model):
124
124
  """Async hook called after updating account."""
125
125
  from amsdal_crm.services.workflow_service import WorkflowService
126
126
 
127
- WorkflowService.execute_rules('Account', 'update', self)
127
+ await WorkflowService.aexecute_rules('Account', 'update', self)
@@ -89,7 +89,7 @@ class Contact(TimestampMixin, Model):
89
89
  if self.custom_fields:
90
90
  from amsdal_crm.services.custom_field_service import CustomFieldService
91
91
 
92
- self.custom_fields = CustomFieldService.validate_custom_fields('Contact', self.custom_fields)
92
+ self.custom_fields = await CustomFieldService.avalidate_custom_fields('Contact', self.custom_fields)
93
93
  await super().apre_create()
94
94
 
95
95
  def pre_update(self) -> None:
@@ -109,7 +109,7 @@ class Contact(TimestampMixin, Model):
109
109
  if self.custom_fields:
110
110
  from amsdal_crm.services.custom_field_service import CustomFieldService
111
111
 
112
- self.custom_fields = CustomFieldService.validate_custom_fields('Contact', self.custom_fields)
112
+ self.custom_fields = await CustomFieldService.avalidate_custom_fields('Contact', self.custom_fields)
113
113
 
114
114
  # Call parent to handle timestamps
115
115
  await super().apre_update()
@@ -124,7 +124,7 @@ class Contact(TimestampMixin, Model):
124
124
  """Async hook called after updating contact."""
125
125
  from amsdal_crm.services.workflow_service import WorkflowService
126
126
 
127
- WorkflowService.execute_rules('Contact', 'update', self)
127
+ await WorkflowService.aexecute_rules('Contact', 'update', self)
128
128
 
129
129
 
130
130
  from amsdal_crm.models.account import Account
amsdal_crm/models/deal.py CHANGED
@@ -99,7 +99,7 @@ class Deal(TimestampMixin, Model):
99
99
  if self.custom_fields:
100
100
  from amsdal_crm.services.custom_field_service import CustomFieldService
101
101
 
102
- self.custom_fields = CustomFieldService.validate_custom_fields('Deal', self.custom_fields)
102
+ self.custom_fields = await CustomFieldService.avalidate_custom_fields('Deal', self.custom_fields)
103
103
  await super().apre_create()
104
104
 
105
105
  def pre_update(self) -> None:
@@ -137,7 +137,7 @@ class Deal(TimestampMixin, Model):
137
137
  if self.custom_fields:
138
138
  from amsdal_crm.services.custom_field_service import CustomFieldService
139
139
 
140
- self.custom_fields = CustomFieldService.validate_custom_fields('Deal', self.custom_fields)
140
+ self.custom_fields = await CustomFieldService.avalidate_custom_fields('Deal', self.custom_fields)
141
141
 
142
142
  # Load stage if it's a reference and sync closed status
143
143
  from amsdal_models.classes.helpers.reference_loader import ReferenceLoader
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amsdal_crm
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: amsdal-crm plugin for AMSDAL Framework
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: aiohttp==3.12.15
@@ -1,5 +1,5 @@
1
1
  amsdal_crm/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=ML7PqsHrTMNNZn8E_rA-LzDCAafMSxMcrmSg8YOi-wo,113896
2
- amsdal_crm/__about__.py,sha256=ls1camlIoMxEZz9gSkZ1OJo-MXqHWwKPtdPbZJmwp7E,22
2
+ amsdal_crm/__about__.py,sha256=uZsygMXMKRw-7qhWojAjnpm8GFPXU92xW6XA8O5GwFY,22
3
3
  amsdal_crm/__init__.py,sha256=b4wxJYesA5Ctk1IrAvlw64i_0EU3SiK1Tw6sUYakd18,303
4
4
  amsdal_crm/app.py,sha256=JLvueh_2KURQLDWMQlq4Z6gAFsqBDTRf6pK095ehp14,1373
5
5
  amsdal_crm/constants.py,sha256=5Ga7q9zEKcQZnAoKv_SE_7w8WxvhPFkM9gY9NruOEaA,347
@@ -9,15 +9,15 @@ amsdal_crm/fixtures/__init__.py,sha256=1tDNXZhcbZBd4tX3lTKKlom1NUg1TX2aa2IbymWO9
9
9
  amsdal_crm/fixtures/permissions.py,sha256=cYA-gWkKQdoN79GymQVHtT0GyFXMzaskwp13Ietp9wE,1107
10
10
  amsdal_crm/fixtures/pipelines.py,sha256=ZCLmgrA700Sl7Oy7l4IQ8FbIbC1378OkcJTrZe5701o,2064
11
11
  amsdal_crm/lifecycle/__init__.py,sha256=B8nw19lEIr7U15Lnu6jh7yzZwF9LWWh4-p3X63sAicQ,31
12
- amsdal_crm/lifecycle/consumer.py,sha256=i8QjD16DuYG5JYNPMBoxfkWJX8leVZfEjEL_3V6GHbI,7253
12
+ amsdal_crm/lifecycle/consumer.py,sha256=5MPIgzn5nLcS_9rn6g3K7TNZZFalZnmVSAb7UFdnTqI,7341
13
13
  amsdal_crm/migrations/0000_initial.py,sha256=8XjM-sbrNKJfcyGE_K2ITW4fOz7gmUxWH_NbX48o4XI,57028
14
14
  amsdal_crm/models/__init__.py,sha256=DSuGeLKPNL_EUGohWtrH6Eof6Nk--dHyZpfqbGWmYIY,1350
15
- amsdal_crm/models/account.py,sha256=b9JguizB-eM1BkDar4nGhayZ-icdfIsQp5cdB4sVZaQ,4897
15
+ amsdal_crm/models/account.py,sha256=prb8Tl0nYyObTeql1fLX1cVRszauzPRSN7xv-H26hRg,4918
16
16
  amsdal_crm/models/activity.py,sha256=UtO1--oSPfrQCfQwWfIlEkjdXuaRG9znesPrGe1JqGM,4775
17
17
  amsdal_crm/models/attachment.py,sha256=CzS8sUMw0_8T_a4Ey6uzrSdEc12Fki5FbrFRXrsTExk,1525
18
- amsdal_crm/models/contact.py,sha256=J_ULPcM947AjRI35UCXWa_CAXK7HDgijXmcIlN2UdSI,4903
18
+ amsdal_crm/models/contact.py,sha256=xOTl8zUIEm2_Tk-CQxGAjzR_iuLA7Q_aKmJZAMXZ1F0,4924
19
19
  amsdal_crm/models/custom_field_definition.py,sha256=Z0k_QR6rZ1hWkg4Wn-w8Rn9GSIgpOg_moUYRsmRPZQI,1666
20
- amsdal_crm/models/deal.py,sha256=ECG5Jd1zy286YJFGfxKDlJjUPW9PhLEvvL3kIeGttws,6434
20
+ amsdal_crm/models/deal.py,sha256=kEmS_nkicWKhZO1PbeAJLYbAffdo6LU8Nm5xDQDOwkA,6448
21
21
  amsdal_crm/models/pipeline.py,sha256=DXJh5MbCCRctEHhDfxef5RxFWSKN0D4v6UK75q5ssL8,925
22
22
  amsdal_crm/models/stage.py,sha256=Ch4O1Aj2LtBhGpDN7MqY4iNRPrEQig0q6QtEU5cp4hA,1608
23
23
  amsdal_crm/models/workflow_rule.py,sha256=cnIEaX-hWcRYvN5gR4uPt7Cirr8sPPdJibZapD8VRpY,1547
@@ -27,6 +27,6 @@ amsdal_crm/services/custom_field_service.py,sha256=rqTlzcmjc-tqc3nuo2m0cMFdMgo1l
27
27
  amsdal_crm/services/deal_service.py,sha256=ZF7cAc6r10xgXZ8D8Oy3hnE-6GgAXq8fuG_Y4QerRGw,4839
28
28
  amsdal_crm/services/email_service.py,sha256=kung83otZAzm5MjezbWFP_Bp9CJ2NXLlDdjMX9MvNIc,3788
29
29
  amsdal_crm/services/workflow_service.py,sha256=oKOFJrwnMZxAiHuScs63tZxL801z-6ryrUuPMC7OXlE,7036
30
- amsdal_crm-0.1.1.dist-info/METADATA,sha256=3Aj2I9q7wS0OW7CVgMLWdpFHDPkM_qpukZdr9OoQL7A,1596
31
- amsdal_crm-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
32
- amsdal_crm-0.1.1.dist-info/RECORD,,
30
+ amsdal_crm-0.1.3.dist-info/METADATA,sha256=YaHTPIx0xt3VAxvRqdILvZtScEjl2A9Gw5Iq9SX68m0,1596
31
+ amsdal_crm-0.1.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
32
+ amsdal_crm-0.1.3.dist-info/RECORD,,