-
-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by simahawk
- Loading branch information
Showing
21 changed files
with
1,192 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
=========================== | ||
Base eBill Payment Contract | ||
=========================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:305c1c00d3de8d5ef06c54ff8bad41c5051a5ad6725e4095da4399e76b8f3881 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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%2Fedi-lightgray.png?logo=github | ||
:target: https://github.com/OCA/edi/tree/17.0/base_ebill_payment_contract | ||
:alt: OCA/edi | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/edi-17-0/edi-17-0-base_ebill_payment_contract | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/edi&target_branch=17.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
The goal of this module is to be a common ground for ebilling addons. It | ||
adds an ebill.payment.contract attached to a partner. Alone this module | ||
has no purpose. It needs to be installed with a module that implements a | ||
specific ebilling system. This depending module has to implement his own | ||
'transmit.method'. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
1. Install a specific e-billing module (None are ready, yet) | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/edi/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/edi/issues/new?body=module:%20base_ebill_payment_contract%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* Camptocamp | ||
|
||
Contributors | ||
------------ | ||
|
||
- Thierry Ducrest <[email protected]> | ||
- Phuc Tran Thanh <[email protected]> | ||
|
||
Other credits | ||
------------- | ||
|
||
The development of this module has been financially supported by: | ||
|
||
- Camptocamp | ||
|
||
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. | ||
|
||
.. |maintainer-TDu| image:: https://github.com/TDu.png?size=40px | ||
:target: https://github.com/TDu | ||
:alt: TDu | ||
|
||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-TDu| | ||
|
||
This module is part of the `OCA/edi <https://github.com/OCA/edi/tree/17.0/base_ebill_payment_contract>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import models |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright 2020 Camptocamp SA | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Base eBill Payment Contract", | ||
"summary": """ | ||
Base for managing e-billing contracts""", | ||
"version": "17.0.1.0.0", | ||
"development_status": "Beta", | ||
"license": "AGPL-3", | ||
"author": "Camptocamp,Odoo Community Association (OCA)", | ||
"maintainers": ["TDu"], | ||
"website": "https://github.com/OCA/edi", | ||
"depends": ["account_invoice_transmit_method"], | ||
"data": ["security/ir.model.access.csv", "views/ebill_payment_contract.xml"], | ||
"demo": ["demo/ebill_payment_contract.xml"], | ||
} |
13 changes: 13 additions & 0 deletions
13
base_ebill_payment_contract/demo/ebill_payment_contract.xml
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo noupdate="1"> | ||
<record model="ebill.payment.contract" id="ebill_payment_contract_demo_1"> | ||
<field name="transmit_method_id" ref="account_invoice_transmit_method.mail" /> | ||
<field name="state">draft</field> | ||
<field name="partner_id" ref="base.res_partner_12" /> | ||
</record> | ||
<record model="ebill.payment.contract" id="ebill_payment_contract_demo_2"> | ||
<field name="transmit_method_id" ref="account_invoice_transmit_method.mail" /> | ||
<field name="state">open</field> | ||
<field name="partner_id" ref="base.res_partner_12" /> | ||
</record> | ||
</odoo> |
116 changes: 116 additions & 0 deletions
116
base_ebill_payment_contract/i18n/base_ebill_payment_contract.pot
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 |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_ebill_payment_contract | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.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: base_ebill_payment_contract | ||
#: model:ir.model.fields.selection,name:base_ebill_payment_contract.selection__ebill_payment_contract__state__cancel | ||
msgid "Cancel" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model,name:base_ebill_payment_contract.model_res_partner | ||
msgid "Contact" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__create_uid | ||
msgid "Created by" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__create_date | ||
msgid "Created on" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__partner_id | ||
msgid "Customer" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields.selection,name:base_ebill_payment_contract.selection__ebill_payment_contract__state__draft | ||
msgid "Draft" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__date_end | ||
msgid "End date" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__is_valid | ||
msgid "Is Valid" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__write_uid | ||
msgid "Last Updated by" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__write_date | ||
msgid "Last Updated on" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__name | ||
msgid "Name" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields.selection,name:base_ebill_payment_contract.selection__ebill_payment_contract__state__open | ||
msgid "Open" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__transmit_method_id | ||
msgid "Service Name" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__date_start | ||
msgid "Start date" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__state | ||
msgid "State" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model_terms:ir.ui.view,arch_db:base_ebill_payment_contract.ebill_payment_contract_search_view | ||
msgid "Valid" | ||
msgstr "" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.actions.act_window,name:base_ebill_payment_contract.ebill_payment_contract_act_window | ||
#: model:ir.model,name:base_ebill_payment_contract.model_ebill_payment_contract | ||
#: model:ir.ui.menu,name:base_ebill_payment_contract.ebill_payment_contract_menu | ||
msgid "eBill Payment Contract" | ||
msgstr "" |
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 |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_ebill_payment_contract | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2023-11-20 22:34+0000\n" | ||
"Last-Translator: Ivorra78 <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.17\n" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields.selection,name:base_ebill_payment_contract.selection__ebill_payment_contract__state__cancel | ||
msgid "Cancel" | ||
msgstr "Cancelar" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model,name:base_ebill_payment_contract.model_res_partner | ||
msgid "Contact" | ||
msgstr "Contacto" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__create_uid | ||
msgid "Created by" | ||
msgstr "Creado por" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__create_date | ||
msgid "Created on" | ||
msgstr "Creado el" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__partner_id | ||
msgid "Customer" | ||
msgstr "Cliente" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__display_name | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_res_partner__display_name | ||
msgid "Display Name" | ||
msgstr "Mostrar Nombre" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields.selection,name:base_ebill_payment_contract.selection__ebill_payment_contract__state__draft | ||
msgid "Draft" | ||
msgstr "Borrador" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__date_end | ||
msgid "End date" | ||
msgstr "Fecha Final" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__id | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_res_partner__id | ||
msgid "ID" | ||
msgstr "ID" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__is_valid | ||
msgid "Is Valid" | ||
msgstr "Es Válido" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract____last_update | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_res_partner____last_update | ||
msgid "Last Modified on" | ||
msgstr "Última modificación el" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__write_uid | ||
msgid "Last Updated by" | ||
msgstr "Última Actualización por" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__write_date | ||
msgid "Last Updated on" | ||
msgstr "Última Actualización el" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__name | ||
msgid "Name" | ||
msgstr "Nombre" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields.selection,name:base_ebill_payment_contract.selection__ebill_payment_contract__state__open | ||
msgid "Open" | ||
msgstr "Abrir" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__transmit_method_id | ||
msgid "Service Name" | ||
msgstr "Nombre del Servicio" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__date_start | ||
msgid "Start date" | ||
msgstr "Fecha Inicio" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.model.fields,field_description:base_ebill_payment_contract.field_ebill_payment_contract__state | ||
msgid "State" | ||
msgstr "Estado" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model_terms:ir.ui.view,arch_db:base_ebill_payment_contract.ebill_payment_contract_search_view | ||
msgid "Valid" | ||
msgstr "Válido" | ||
|
||
#. module: base_ebill_payment_contract | ||
#: model:ir.actions.act_window,name:base_ebill_payment_contract.ebill_payment_contract_act_window | ||
#: model:ir.model,name:base_ebill_payment_contract.model_ebill_payment_contract | ||
#: model:ir.ui.menu,name:base_ebill_payment_contract.ebill_payment_contract_menu | ||
msgid "eBill Payment Contract" | ||
msgstr "Contrato de pago de facturas electrónicas" |
Oops, something went wrong.