-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TA#67305 [16.0][MIG] report_aeroo (#64)
* resolve conflict * [16.0][MIG] report_aeroo * [16.0][MIG] report_aeroo * ŦA#67305 [MIG] report_aerroo * [16.0][MIG] report_aeroo * [16.0][MIG] report_aeroo : filename managment * [16.0][MIG] report_aeroo : dockerfile and requirements * [16.0][MIG] report_aeroo : dockerfile and requirements * [16.0][MIG] report_aeroo : change requirements * [16.0][MIG] report_aeroo : TU * [16.0][MIG] report_aeroo : TU * [16.0][MIG] report_aeroo : TU * TA#67305 [16.0] [ADD] TU * [16.0][MIG] report_aeroo : del action manager copy * [16.0][MIG] fix circle_ci config * [16.0][MIG] main : remove account on dependance * [16.0][MIG] main : disable TU * [16.0][MIG] main : activate TU * Update config.yml * Update config.yml --------- Co-authored-by: Abdellatif Benzbiria <[email protected]> Co-authored-by: Rivo Lalaina <[email protected]>
- Loading branch information
1 parent
814d15a
commit 5b87050
Showing
136 changed files
with
5,832 additions
and
2,612 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
# git+https://github.com/aeroo/aeroolib.git | ||
# waiting for PR https://github.com/aeroo/aeroolib/pull/12 | ||
git+https://github.com/adhoc-dev/aeroolib@master-fix-ods | ||
git+https://github.com/aeroo/currency2text.git | ||
# use this genshi version to fix error when, for eg, you send arguments like "date=True" check this https://genshi.edgewall.org/ticket/600 | ||
git+https://github.com/numigi/aeroolib@master | ||
Babel==2.9.1 | ||
genshi==0.7.7 | ||
freezegun==1.5.1 | ||
html2text==2024.2.26 | ||
ddt==1.2.1 | ||
ddt==1.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,24 @@ FROM quay.io/numigi/odoo-public:16.latest | |
LABEL maintainer="[email protected]" | ||
|
||
USER root | ||
#Install dependencies for aeroo reports | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
default-jre \ | ||
libreoffice-java-common \ | ||
libreoffice-writer \ | ||
poppler-utils | ||
|
||
COPY .docker_files/requirements.txt . | ||
RUN pip3 install -r requirements.txt | ||
# we can't use `pip install --user` as the $HOME of odoo is a volume | ||
# so everything that is installed in $HOME will be overwritten by the mounting. | ||
|
||
ENV THIRD_PARTY_ADDONS /mnt/third-party-addons | ||
RUN mkdir -p "${THIRD_PARTY_ADDONS}" && chown -R odoo "${THIRD_PARTY_ADDONS}" | ||
COPY .docker_files/requirements.txt ./requirements.txt | ||
RUN pip3 install -r ./requirements.txt && rm ./requirements.txt | ||
|
||
USER odoo | ||
|
||
COPY report_aeroo /mnt/extra-addons/report_aeroo | ||
COPY ./report_aeroo /mnt/extra-addons/report_aeroo | ||
|
||
COPY .docker_files/main /mnt/extra-addons/main | ||
COPY .docker_files/odoo.conf /etc/odoo | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.