4 Commits

Author SHA1 Message Date
82ce1fa21d release: version 0.1.4 🚀
All checks were successful
Build Docker image / Create Release (push) Successful in 7s
Build Docker image / deploy (push) Successful in 18s
2025-05-24 21:27:01 +02:00
515876e6c9 fix: broken source code indentation, refs NOISSUE 2025-05-24 21:26:57 +02:00
1cd16ebc09 release: version 0.1.3 🚀
All checks were successful
Build Docker image / Create Release (push) Successful in 6s
Build Docker image / deploy (push) Successful in 43s
2025-05-24 21:13:51 +02:00
8edc710be8 fix: more CI issues, refs NOISSUE 2025-05-24 21:13:49 +02:00
5 changed files with 37 additions and 14 deletions

View File

@@ -87,8 +87,8 @@ start() {
gitchangelog | grep -v "[rR]elease:" > HISTORY.md
git add HISTORY.md
echo $new_version > CustomOdoo/VERSION
git add CustomOdoo/VERSION
echo $new_version > VERSION
git add VERSION
git commit -m "release: version $new_version 🚀"
echo "creating git tag : $new_version"
git tag $new_version

View File

@@ -41,7 +41,7 @@ jobs:
- name: Check version match
run: |
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
if [ "$(cat $REPOSITORY_NAME/VERSION)" = "${GITHUB_REF_NAME}" ] ; then
if [ "$(cat VERSION)" = "${GITHUB_REF_NAME}" ] ; then
echo "Version matches successfully!"
else
echo "Version must match!"
@@ -57,5 +57,5 @@ jobs:
run: |
REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}' | tr '[:upper:]' '[:lower:]')
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
docker build -t "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat $REPOSITORY_NAME/VERSION)" ./
docker push "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat $REPOSITORY_NAME/VERSION)"
docker build -t "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat VERSION)" ./
docker push "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat VERSION)"

View File

@@ -5,10 +5,32 @@ Changelog
(unreleased)
------------
Fix
~~~
- Broken source code indentation, refs NOISSUE. [Simon Diesenreiter]
0.1.3 (2025-05-24)
------------------
Fix
~~~
- More CI issues, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.2 (2025-05-24)
------------------
Fix
~~~
- CI issues, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.1 (2025-05-24)
------------------

1
VERSION Normal file
View File

@@ -0,0 +1 @@
0.1.4

View File

@@ -479,15 +479,15 @@ class Partner(models.Model):
'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. You can use the "Discard" button to abandon this change.')}
if partner.type == 'contact' or self.type == 'contact':
# for contacts: copy the parent address, if set (aka, at least one
# value is set in the address: otherwise, keep the one from the
# contact)
#address_fields = self._address_fields()
#if any(self.parent_id[key] for key in address_fields):
# def convert(value):
# return value.id if isinstance(value, models.BaseModel) else value
# result['value'] = {key: convert(self.parent_id[key]) for key in address_fields}
#if partner.type == 'contact' or self.type == 'contact':
# # for contacts: copy the parent address, if set (aka, at least one
# # value is set in the address: otherwise, keep the one from the
# # contact)
# address_fields = self._address_fields()
# if any(self.parent_id[key] for key in address_fields):
# def convert(value):
# return value.id if isinstance(value, models.BaseModel) else value
# result['value'] = {key: convert(self.parent_id[key]) for key in address_fields}
return result
@api.onchange('parent_id')