Skip to content

Commit

Permalink
[14.0][ADD] account_invoice_repair_info_date_done: In invoice report …
Browse files Browse the repository at this point in the history
…print repair date done.
  • Loading branch information
alfredoavanzosc committed Nov 27, 2024
1 parent de55961 commit 129d97c
Show file tree
Hide file tree
Showing 7 changed files with 122 additions and 0 deletions.
27 changes: 27 additions & 0 deletions account_invoice_repair_info_date_done/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

=====================================
Account Invoice Repair Info Date Done
=====================================

* In invoice report print repair date done.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/avanzosc/mrp-repair-addons/issues>`_. In case of trouble,
please check there if your issue has already been reported. If you spotted it
first, help us smash it by providing detailed and welcomed feedback.

Credits
=======

Contributors
------------
* Alfredo de la Fuente <[email protected]>
* Ana Juaristi <[email protected]>

Do not contact contributors directly about support or help with technical issues.
Empty file.
19 changes: 19 additions & 0 deletions account_invoice_repair_info_date_done/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024 Alfredo de la Fuente - AvanzOSC
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Account Invoice Repair Info Date Done",
"version": "14.0.1.0.0",
"category": "Inventory/Inventory",
"license": "AGPL-3",
"author": "AvanzOSC",
"website": "https://github.com/avanzosc/mrp-repair-addons",
"depends": [
"account_invoice_repair_info",
"repair_date_done"
],
"data": [
"report/account_invoice_report.xml",
],
"installable": True,
"auto_install": True,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_repair_info_date_done
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-27 12:39+0000\n"
"PO-Revision-Date: 2024-11-27 12:39+0000\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: account_invoice_repair_info_date_done
#: model_terms:ir.ui.view,arch_db:account_invoice_repair_info_date_done.report_invoice_document
msgid "<strong>Repair Order End Date:</strong>"
msgstr ""
21 changes: 21 additions & 0 deletions account_invoice_repair_info_date_done/i18n/en_GB.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_repair_info_date_done
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-27 12:40+0000\n"
"PO-Revision-Date: 2024-11-27 12:40+0000\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: account_invoice_repair_info_date_done
#: model_terms:ir.ui.view,arch_db:account_invoice_repair_info_date_done.report_invoice_document
msgid "<strong>Repair Order End Date:</strong>"
msgstr ""
21 changes: 21 additions & 0 deletions account_invoice_repair_info_date_done/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_repair_info_date_done
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-27 12:40+0000\n"
"PO-Revision-Date: 2024-11-27 12:40+0000\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: account_invoice_repair_info_date_done
#: model_terms:ir.ui.view,arch_db:account_invoice_repair_info_date_done.report_invoice_document
msgid "<strong>Repair Order End Date:</strong>"
msgstr "<strong>Fecha fin orden reparación:</strong>"
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_invoice_document"
inherit_id="account_invoice_repair_info.report_invoice_document">
<div name="lot_from_repair" position="after">
<div class="col-auto col-3 mw-100 mb-2" name="date_done_from_repair"
t-if="o.repair_order_id and o.repair_order_id.date_done">
<strong>Repair Order End Date:</strong>
<p class="m-0" t-field="o.repair_order_id.date_done"/>
</div>
</div>
</template>
</odoo>

0 comments on commit 129d97c

Please sign in to comment.