Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 82ce1fa21d | |||
| 515876e6c9 |
11
HISTORY.md
11
HISTORY.md
@@ -5,10 +5,21 @@ Changelog
|
|||||||
(unreleased)
|
(unreleased)
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
Fix
|
||||||
|
~~~
|
||||||
|
- Broken source code indentation, refs NOISSUE. [Simon Diesenreiter]
|
||||||
|
|
||||||
|
|
||||||
|
0.1.3 (2025-05-24)
|
||||||
|
------------------
|
||||||
|
|
||||||
Fix
|
Fix
|
||||||
~~~
|
~~~
|
||||||
- More CI issues, refs NOISSUE. [Simon Diesenreiter]
|
- More CI issues, refs NOISSUE. [Simon Diesenreiter]
|
||||||
|
|
||||||
|
Other
|
||||||
|
~~~~~
|
||||||
|
|
||||||
|
|
||||||
0.1.2 (2025-05-24)
|
0.1.2 (2025-05-24)
|
||||||
------------------
|
------------------
|
||||||
|
|||||||
@@ -479,12 +479,12 @@ class Partner(models.Model):
|
|||||||
'was never correctly set. If an existing contact starts working for a new '
|
'was never correctly set. If an existing contact starts working for a new '
|
||||||
'company then a new contact should be created under that new '
|
'company then a new contact should be created under that new '
|
||||||
'company. You can use the "Discard" button to abandon this change.')}
|
'company. You can use the "Discard" button to abandon this change.')}
|
||||||
if partner.type == 'contact' or self.type == 'contact':
|
#if partner.type == 'contact' or self.type == 'contact':
|
||||||
# for contacts: copy the parent address, if set (aka, at least one
|
# # for contacts: copy the parent address, if set (aka, at least one
|
||||||
# value is set in the address: otherwise, keep the one from the
|
# # value is set in the address: otherwise, keep the one from the
|
||||||
# contact)
|
# # contact)
|
||||||
#address_fields = self._address_fields()
|
# address_fields = self._address_fields()
|
||||||
#if any(self.parent_id[key] for key in address_fields):
|
# if any(self.parent_id[key] for key in address_fields):
|
||||||
# def convert(value):
|
# def convert(value):
|
||||||
# return value.id if isinstance(value, models.BaseModel) else value
|
# return value.id if isinstance(value, models.BaseModel) else value
|
||||||
# result['value'] = {key: convert(self.parent_id[key]) for key in address_fields}
|
# result['value'] = {key: convert(self.parent_id[key]) for key in address_fields}
|
||||||
|
|||||||
Reference in New Issue
Block a user