Skip to content

Commit

Permalink
[ADD] base_repair_config: Moved from manufacture
Browse files Browse the repository at this point in the history
  • Loading branch information
ppyczko committed Nov 27, 2024
1 parent f534fd1 commit 42a3902
Show file tree
Hide file tree
Showing 16 changed files with 201 additions and 150 deletions.
77 changes: 38 additions & 39 deletions base_repair_config/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ Base Repair Config
.. |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%2Fmanufacture-lightgray.png?logo=github
:target: https://github.com/OCA/manufacture/tree/13.0/base_repair_config
:alt: OCA/manufacture
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Frepair-lightgray.png?logo=github
:target: https://github.com/OCA/repair/tree/17.0/base_repair_config
:alt: OCA/repair
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-base_repair_config
:target: https://translation.odoo-community.org/projects/repair-17-0/repair-17-0-base_repair_config
: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/manufacture&target_branch=13.0
:target: https://runboat.odoo-community.org/builds?repo=OCA/repair&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|
Expand All @@ -34,73 +34,72 @@ configuration.
This is a technical module and it doesn't provide any new functionality.
Extend this module to add general settings related to the repair app.

When extending the general settings view, here is an example of how the code
would look like:
When extending the general settings view, here is an example of how the
code would look like:

.. code:: xml
<record id="res_config_settings_view_form" model="ir.ui.view">
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="base_repair_config.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//div[@id='configure_repair']" position="after">
<div class="col-xs-12 col-md-6 o_setting_box">
<div class="o_setting_right_pane">
<label for="new_field_name"/>
<span class="fa fa-lg fa-building-o" title="Values set here are company-specific." groups="base.group_multi_company"/>
<div class="row">
<div class="text-muted col-md-8">
Set some configuration data for this field ...
</div>
</div>
<div class="content-group">
<div class="mt16">
<field name="new_field_name" class="o_light_label"/>
</div>
</div>
</div>
</div>
</xpath>
</field>
</record>
<record id="res_config_settings_view_form_inherit" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.repair</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="base_repair_config.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//block[@name='repair_setting_container']" position="inside">
<setting id="extra_repair_setting" help="Enable extra repair configuration options.">
<field name="extra_repair_field"/>
</setting>
<setting id="another_repair_setting" help="Another repair-related setting.">
<field name="another_repair_field"/>
</setting>
</xpath>
</field>
</record>
**Table of contents**

.. contents::
:local:

Configuration
=============



Usage
=====

To use this module, you need to:

#. Go to *Repair > Configuration > General Settings*.
1. Go to *Repair > Configuration > Settings*.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_.
Bugs are tracked on `GitHub Issues <https://github.com/OCA/repair/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/manufacture/issues/new?body=module:%20base_repair_config%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/OCA/repair/issues/new?body=module:%20base_repair_config%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
~~~~~~~
-------

* Escodoo

Contributors
~~~~~~~~~~~~
------------

- Marcel Savegnago <[email protected]>
- `APSL-Nagarro <https://www.apsl.tech>`__:

* Marcel Savegnago <[email protected]>
- Patryk Pyczko <[email protected]>

Maintainers
~~~~~~~~~~~
-----------

This module is maintained by the OCA.

Expand All @@ -120,6 +119,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-marcelsavegnago|

This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/13.0/base_repair_config>`_ project on GitHub.
This module is part of the `OCA/repair <https://github.com/OCA/repair/tree/17.0/base_repair_config>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
6 changes: 3 additions & 3 deletions base_repair_config/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
{
"name": "Base Repair Config",
"summary": """
Provides general settings for the Maintenance App""",
"version": "13.0.1.0.0",
Provides general settings for the Repair App""",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"author": "Escodoo,Odoo Community Association (OCA)",
"maintainers": ["marcelsavegnago"],
"images": ["static/description/banner.png"],
"website": "https://github.com/OCA/manufacture",
"website": "https://github.com/OCA/repair",
"depends": ["repair"],
"data": ["views/res_config_settings.xml"],
}
13 changes: 7 additions & 6 deletions base_repair_config/i18n/base_repair_config.pot
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-27 10:55+0000\n"
"PO-Revision-Date: 2024-11-27 10:55+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
Expand All @@ -15,16 +17,15 @@ msgstr ""

#. module: base_repair_config
#: model_terms:ir.ui.view,arch_db:base_repair_config.res_config_settings_view_form
msgid "Configure Repair"
msgid "Repair"
msgstr ""

#. module: base_repair_config
#: model:ir.actions.act_window,name:base_repair_config.action_repair_config_settings
#: model:ir.ui.menu,name:base_repair_config.menu_repair_config_settings
msgid "General Settings"
msgid "Repair Settings"
msgstr ""

#. module: base_repair_config
#: model_terms:ir.ui.view,arch_db:base_repair_config.res_config_settings_view_form
msgid "Repair"
#: model:ir.ui.menu,name:base_repair_config.menu_repair_config_settings
msgid "Settings"
msgstr ""
31 changes: 31 additions & 0 deletions base_repair_config/i18n/ca.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_repair_config
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-27 10:55+0000\n"
"PO-Revision-Date: 2024-11-27 10:55+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: base_repair_config
#: model_terms:ir.ui.view,arch_db:base_repair_config.res_config_settings_view_form
msgid "Repair"
msgstr "Reparacions"

#. module: base_repair_config
#: model:ir.actions.act_window,name:base_repair_config.action_repair_config_settings
msgid "Repair Settings"
msgstr "Configuració de Reparacions"

#. module: base_repair_config
#: model:ir.ui.menu,name:base_repair_config.menu_repair_config_settings
msgid "Settings"
msgstr "Configuració"
31 changes: 31 additions & 0 deletions base_repair_config/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_repair_config
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-27 10:55+0000\n"
"PO-Revision-Date: 2024-11-27 10:55+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: base_repair_config
#: model_terms:ir.ui.view,arch_db:base_repair_config.res_config_settings_view_form
msgid "Repair"
msgstr "Reparaciones"

#. module: base_repair_config
#: model:ir.actions.act_window,name:base_repair_config.action_repair_config_settings
msgid "Repair Settings"
msgstr "Configuración de Reparaciones"

#. module: base_repair_config
#: model:ir.ui.menu,name:base_repair_config.menu_repair_config_settings
msgid "Settings"
msgstr "Ajustes"
3 changes: 3 additions & 0 deletions base_repair_config/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
1 change: 1 addition & 0 deletions base_repair_config/readme/CONFIGURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Empty file.
3 changes: 3 additions & 0 deletions base_repair_config/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Marcel Savegnago \<<[email protected]>\>
- [APSL-Nagarro](https://www.apsl.tech):
- Patryk Pyczko \<<[email protected]>\>
1 change: 0 additions & 1 deletion base_repair_config/readme/CONTRIBUTORS.rst

This file was deleted.

26 changes: 26 additions & 0 deletions base_repair_config/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
This module provides an empty general settings section for the repair
configuration.

This is a technical module and it doesn't provide any new functionality.
Extend this module to add general settings related to the repair app.

When extending the general settings view, here is an example of how the
code would look like:

``` xml
<record id="res_config_settings_view_form_inherit" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.repair</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="base_repair_config.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//block[@name='repair_setting_container']" position="inside">
<setting id="extra_repair_setting" help="Enable extra repair configuration options.">
<field name="extra_repair_field"/>
</setting>
<setting id="another_repair_setting" help="Another repair-related setting.">
<field name="another_repair_field"/>
</setting>
</xpath>
</field>
</record>
```
35 changes: 0 additions & 35 deletions base_repair_config/readme/DESCRIPTION.rst

This file was deleted.

3 changes: 3 additions & 0 deletions base_repair_config/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
To use this module, you need to:

1. Go to *Repair \> Configuration \> Settings*.
3 changes: 0 additions & 3 deletions base_repair_config/readme/USAGE.rst

This file was deleted.

Loading

0 comments on commit 42a3902

Please sign in to comment.