From 33a2b0c63bc804dd9fe283df08272035b5660209 Mon Sep 17 00:00:00 2001 From: Flectra Community Bot Date: Sun, 6 Feb 2022 03:14:17 +0000 Subject: [PATCH] Automatic Update form OCA2FC Migrator --- .gitlab-ci.yml | 39 +- README.md | 1 + report_layout_config/COPYRIGHT | 16 + report_layout_config/LICENSE | 663 ++++++++++++++++++ report_layout_config/README.rst | 83 +++ report_layout_config/__init__.py | 4 + report_layout_config/__manifest__.py | 21 + report_layout_config/data/report_layout.xml | 27 + .../i18n/report_layout_config.pot | 210 ++++++ .../migrations/14.0.1.0.0/pre-migrate.py | 18 + report_layout_config/models/__init__.py | 2 + .../models/base_document_layout.py | 26 + report_layout_config/models/res_company.py | 19 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 437 ++++++++++++ .../static/img/preview_standard.png | Bin 0 -> 5686 bytes .../static/pdf/preview_standard.pdf | Bin 0 -> 27399 bytes .../static/src/scss/style.scss | 11 + report_layout_config/templates/assets.xml | 14 + .../templates/report_templates.xml | 152 ++++ .../views/document_layout.xml | 17 + 21 files changed, 1759 insertions(+), 1 deletion(-) create mode 100644 report_layout_config/COPYRIGHT create mode 100644 report_layout_config/LICENSE create mode 100644 report_layout_config/README.rst create mode 100644 report_layout_config/__init__.py create mode 100644 report_layout_config/__manifest__.py create mode 100644 report_layout_config/data/report_layout.xml create mode 100644 report_layout_config/i18n/report_layout_config.pot create mode 100644 report_layout_config/migrations/14.0.1.0.0/pre-migrate.py create mode 100644 report_layout_config/models/__init__.py create mode 100644 report_layout_config/models/base_document_layout.py create mode 100644 report_layout_config/models/res_company.py create mode 100644 report_layout_config/static/description/icon.png create mode 100644 report_layout_config/static/description/index.html create mode 100644 report_layout_config/static/img/preview_standard.png create mode 100644 report_layout_config/static/pdf/preview_standard.pdf create mode 100644 report_layout_config/static/src/scss/style.scss create mode 100644 report_layout_config/templates/assets.xml create mode 100644 report_layout_config/templates/report_templates.xml create mode 100644 report_layout_config/views/document_layout.xml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b370d8..cf4e07a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,13 +47,14 @@ test_all_modules: --db_password flectra --database test_all --test-enable - --init base_comment_template,report_xml,report_xlsx_helper_demo,bi_sql_editor,report_qr,report_wkhtmltopdf_param,report_qweb_pdf_watermark,report_xlsx_helper,report_xlsx,bi_view_editor,report_qweb_encrypt,report_qweb_parameter,kpi_dashboard,report_py3o_fusion_server,report_qweb_element_page_visibility,report_py3o + --init base_comment_template,report_xml,report_xlsx_helper_demo,bi_sql_editor,report_layout_config,report_qr,report_wkhtmltopdf_param,report_qweb_pdf_watermark,report_xlsx_helper,report_xlsx,bi_view_editor,report_qweb_encrypt,report_qweb_parameter,kpi_dashboard,report_py3o_fusion_server,report_qweb_element_page_visibility,report_py3o --stop-after-init --log-level error --log-handler flectra.addons.base_comment_template:TEST --log-handler flectra.addons.report_xml:TEST --log-handler flectra.addons.report_xlsx_helper_demo:TEST --log-handler flectra.addons.bi_sql_editor:TEST + --log-handler flectra.addons.report_layout_config:TEST --log-handler flectra.addons.report_qr:TEST --log-handler flectra.addons.report_wkhtmltopdf_param:TEST --log-handler flectra.addons.report_qweb_pdf_watermark:TEST @@ -213,6 +214,42 @@ test_module_bi_sql_editor: --log-level error --log-handler flectra.addons.bi_sql_editor:TEST" +test_module_report_layout_config: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev libreoffice graphviz + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/server-auth.git ~/others/server-auth" + - su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/server-env.git ~/others/server-env" + - su - flectra -c "git clone --branch 20-fixed --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/flectra-community/server-tools.git ~/others/server-tools" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_layout_config + - psql -h psql -U flectra -d test_report_layout_config -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_layout_config + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_layout_config + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR},~/others/server-auth,~/others/server-env,~/others/server-tools + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_layout_config + --test-enable -i report_layout_config + --stop-after-init + --log-level error + --log-handler flectra.addons.report_layout_config:TEST" + test_module_report_qr: stage: testsingle when: on_failure diff --git a/README.md b/README.md index 3449adb..846c4f8 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ addon | version | summary [report_xml](report_xml/) | 2.0.1.0.1| Allow to generate XML reports [report_xlsx_helper_demo](report_xlsx_helper_demo/) | 2.0.1.0.0| Report xlsx helpers - demo [bi_sql_editor](bi_sql_editor/) | 2.0.1.0.0| BI Views builder, based on Materialized or Normal SQL Views +[report_layout_config](report_layout_config/) | 2.0.1.0.0| Add possibility to easily modify the global report layout [report_qr](report_qr/) | 2.0.1.0.1| Web QR Manager [report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 2.0.1.0.0| Add new parameters for a paper format to be used by wkhtmltopdf command as arguments. [report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 2.0.1.0.0| Add watermarks to your QWEB PDF reports diff --git a/report_layout_config/COPYRIGHT b/report_layout_config/COPYRIGHT new file mode 100644 index 0000000..27da447 --- /dev/null +++ b/report_layout_config/COPYRIGHT @@ -0,0 +1,16 @@ +Most of the files are + + :Copyright: This stylesheet has been placed in the public domain. + Copyright 2020 Camptocamp SA + Copyright 2021 Camptocamp SA + Copyright 2018 Flectra Community + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. \ No newline at end of file diff --git a/report_layout_config/LICENSE b/report_layout_config/LICENSE new file mode 100644 index 0000000..3939cd9 --- /dev/null +++ b/report_layout_config/LICENSE @@ -0,0 +1,663 @@ +For copyright information, please see the COPYRIGHT file. + +GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/report_layout_config/README.rst b/report_layout_config/README.rst new file mode 100644 index 0000000..37499a6 --- /dev/null +++ b/report_layout_config/README.rst @@ -0,0 +1,83 @@ +=========================== +Report layout configuration +=========================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/14.0/report_layout_config + :alt: OCA/reporting-engine +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/reporting-engine-14-0/reporting-engine-14-0-report_layout_config + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/143/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module provides new report template +with possibility to add image to replace header and footer. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +* In Setting/General Setting/Business Documents: + * Click on Configure Document Layout + * On the wizard choose Layout images + * Set the `Full header image` + `Full footer image` + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* Thomas Nowicki +* Iryna Vyshnevska + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. \ No newline at end of file diff --git a/report_layout_config/__init__.py b/report_layout_config/__init__.py new file mode 100644 index 0000000..9a14fd0 --- /dev/null +++ b/report_layout_config/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/report_layout_config/__manifest__.py b/report_layout_config/__manifest__.py new file mode 100644 index 0000000..a7ff901 --- /dev/null +++ b/report_layout_config/__manifest__.py @@ -0,0 +1,21 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Report layout configuration", + "summary": "Add possibility to easily modify the global report layout", + "version": "2.0.1.0.0", + "category": "Reporting", + "website": "https://gitlab.com/flectra-community/reporting-engine", + "author": "Camptocamp, " "Odoo Community Association (OCA)", + "license": "AGPL-3", + "depends": ["web", "base"], + "data": [ + "views/document_layout.xml", + "templates/assets.xml", + "templates/report_templates.xml", + "data/report_layout.xml", + ], + "application": False, + "installable": True, +} diff --git a/report_layout_config/data/report_layout.xml b/report_layout_config/data/report_layout.xml new file mode 100644 index 0000000..d9b9908 --- /dev/null +++ b/report_layout_config/data/report_layout.xml @@ -0,0 +1,27 @@ + + + + Layout images standard + + /report_layout_config/static/img/preview_standard.png + /report_layout_config/static/pdf/preview_standard.pdf + + + + Layout images clean + + /report_layout_config/static/img/preview_standard.png + /report_layout_config/static/pdf/preview_standard.pdf + + + diff --git a/report_layout_config/i18n/report_layout_config.pot b/report_layout_config/i18n/report_layout_config.pot new file mode 100644 index 0000000..f237ae3 --- /dev/null +++ b/report_layout_config/i18n/report_layout_config.pot @@ -0,0 +1,210 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_layout_config +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +"!important;\n" +" }\n" +" }\n" +" tbody {\n" +" tr:last-child td {\n" +" border-bottom: 3px solid" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +"&.o_clean_footer {\n" +" border-top: 3px solid" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +"&.o_report_layout_standard {\n" +" h2 {\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" background-color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" tr th {\n" +" border-top: 3px solid" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" }\n" +" }\n" +" }\n" +" #total {\n" +" strong {\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" h4 {\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" }\n" +" .pagenumber {\n" +" border: 3px solid" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" }\n" +" }\n" +" &.o_report_layout_clean {\n" +" h1, h2, h3 {\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" }\n" +" #informations strong {\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" }\n" +" #total strong{\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" }\n" +" strong {\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.styles_company_report +msgid "" +";\n" +" }\n" +" table {\n" +" thead {\n" +" color:" +msgstr "" + +#. module: report_layout_config +#: model:ir.model,name:report_layout_config.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_layout_config +#: model:ir.model,name:report_layout_config.model_base_document_layout +msgid "Company Document Layout" +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,field_description:report_layout_config.field_base_document_layout__display_name +#: model:ir.model.fields,field_description:report_layout_config.field_res_company__display_name +msgid "Display Name" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.external_clean_layout_images_template +#: model_terms:ir.ui.view,arch_db:report_layout_config.external_standard_layout_images_template +msgid "Footer logo" +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,field_description:report_layout_config.field_base_document_layout__full_footer_img +#: model:ir.model.fields,field_description:report_layout_config.field_res_company__full_footer_img +msgid "Full footer image" +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,field_description:report_layout_config.field_base_document_layout__full_header_img +#: model:ir.model.fields,field_description:report_layout_config.field_res_company__full_header_img +msgid "Full header image" +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,field_description:report_layout_config.field_base_document_layout__id +#: model:ir.model.fields,field_description:report_layout_config.field_res_company__id +msgid "ID" +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,field_description:report_layout_config.field_base_document_layout____last_update +#: model:ir.model.fields,field_description:report_layout_config.field_res_company____last_update +msgid "Last Modified on" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.external_clean_layout_images_template +#: model_terms:ir.ui.view,arch_db:report_layout_config.external_standard_layout_images_template +msgid "Logo" +msgstr "" + +#. module: report_layout_config +#: model_terms:ir.ui.view,arch_db:report_layout_config.external_clean_layout_images_template +#: model_terms:ir.ui.view,arch_db:report_layout_config.external_standard_layout_images_template +msgid "Page: / " +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,help:report_layout_config.field_base_document_layout__full_footer_img +msgid "Replaces whole footer, disables footer logo" +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,help:report_layout_config.field_base_document_layout__full_header_img +msgid "Replaces whole header with image" +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,help:report_layout_config.field_res_company__full_footer_img +msgid "This image will replace all footer." +msgstr "" + +#. module: report_layout_config +#: model:ir.model.fields,help:report_layout_config.field_res_company__full_header_img +msgid "This image will replace all header." +msgstr "" diff --git a/report_layout_config/migrations/14.0.1.0.0/pre-migrate.py b/report_layout_config/migrations/14.0.1.0.0/pre-migrate.py new file mode 100644 index 0000000..fd4459f --- /dev/null +++ b/report_layout_config/migrations/14.0.1.0.0/pre-migrate.py @@ -0,0 +1,18 @@ +# Copyright 2021 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + + +from openupgradelib.openupgrade import rename_xmlids + + +def migrate(cr, version): + + rename_xmlids( + cr, + [ + ( + "report_layout_config.external_layout_images", + "report_layout_config.external_standard_layout_images_template", + ) + ], + ) diff --git a/report_layout_config/models/__init__.py b/report_layout_config/models/__init__.py new file mode 100644 index 0000000..290c7e1 --- /dev/null +++ b/report_layout_config/models/__init__.py @@ -0,0 +1,2 @@ +from . import res_company +from . import base_document_layout diff --git a/report_layout_config/models/base_document_layout.py b/report_layout_config/models/base_document_layout.py new file mode 100644 index 0000000..8ff3185 --- /dev/null +++ b/report_layout_config/models/base_document_layout.py @@ -0,0 +1,26 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from flectra import api, fields, models + + +class BaseDocumentLayout(models.TransientModel): + _inherit = "base.document.layout" + + full_header_img = fields.Binary( + related="company_id.full_header_img", + readonly=False, + help="Replaces whole header with image", + ) + full_footer_img = fields.Binary( + related="company_id.full_footer_img", + readonly=False, + help="Replaces whole footer, disables footer logo", + ) + + @api.depends( + "full_footer_img", + "full_header_img", + ) + def _compute_preview(self): + super()._compute_preview() diff --git a/report_layout_config/models/res_company.py b/report_layout_config/models/res_company.py new file mode 100644 index 0000000..9c53838 --- /dev/null +++ b/report_layout_config/models/res_company.py @@ -0,0 +1,19 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from flectra import fields, models + + +class ResCompany(models.Model): + _inherit = "res.company" + + full_header_img = fields.Binary( + string="Full header image", + help="This image will replace all header.", + attachment=True, + ) + full_footer_img = fields.Binary( + string="Full footer image", + help="This image will replace all footer.", + attachment=True, + ) diff --git a/report_layout_config/static/description/icon.png b/report_layout_config/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 B#b5vc literal 0 KcmV+b0RR6000031 diff --git a/report_layout_config/static/description/index.html b/report_layout_config/static/description/index.html new file mode 100644 index 0000000..dfbee1c --- /dev/null +++ b/report_layout_config/static/description/index.html @@ -0,0 +1,437 @@ + + + + + + +Report layout configuration + + + +
+

Report layout configuration

+ + +

Beta License: AGPL-3 OCA/reporting-engine Translate me on Weblate Try me on Runbot

+

This module provides new report template +with possibility to add image to replace header and footer.

+

Table of contents

+ +
+

Usage

+
    +
  • +
    In Setting/General Setting/Business Documents:
    +
      +
    • Click on Configure Document Layout
    • +
    • On the wizard choose Layout images
    • +
    • Set the Full header image + Full footer image
    • +
    +
    +
    +
  • +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/reporting-engine project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/report_layout_config/static/img/preview_standard.png b/report_layout_config/static/img/preview_standard.png new file mode 100644 index 0000000000000000000000000000000000000000..0bd596ed9b53069e6cdb26d450c218a123f7df12 GIT binary patch literal 5686 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≻rpmy@4Huf$u@ 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 FMhekR;28h_ literal 0 KcmV+b0RR6000031 diff --git a/report_layout_config/static/src/scss/style.scss b/report_layout_config/static/src/scss/style.scss new file mode 100644 index 0000000..bc9b935 --- /dev/null +++ b/report_layout_config/static/src/scss/style.scss @@ -0,0 +1,11 @@ +.footer-image { + max-width: 500px; +} + +.header-image { + margin-top: 22px; +} + +.header-full-image { + max-height: 60px; +} diff --git a/report_layout_config/templates/assets.xml b/report_layout_config/templates/assets.xml new file mode 100644 index 0000000..be8dc62 --- /dev/null +++ b/report_layout_config/templates/assets.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/report_layout_config/templates/report_templates.xml b/report_layout_config/templates/report_templates.xml new file mode 100644 index 0000000..cc635f1 --- /dev/null +++ b/report_layout_config/templates/report_templates.xml @@ -0,0 +1,152 @@ + + + + + + + + + diff --git a/report_layout_config/views/document_layout.xml b/report_layout_config/views/document_layout.xml new file mode 100644 index 0000000..a9d7b4b --- /dev/null +++ b/report_layout_config/views/document_layout.xml @@ -0,0 +1,17 @@ + + + + base.document.layout + base.document.layout + + + + + + + + max-width: 450px; + + + +