Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions oca_custom/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
===================
OCA Custom Settings
===================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:df0c7349e335de7ace652da62cd7743b27d7dc72eaec3da78766ff7f5fa0db54
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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%2Foca--custom-lightgray.png?logo=github
:target: https://github.com/OCA/oca-custom/tree/18.0/oca_custom
:alt: OCA/oca-custom
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/oca-custom-18-0/oca-custom-18-0-oca_custom
: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/oca-custom&target_branch=18.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Custom module for OCA Instance.

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/oca-custom/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/oca-custom/issues/new?body=module:%20oca_custom%0Aversion:%2018.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
-------

* GRAP
* Akretion

Contributors
------------

- Sylvain LE GAL (https://twitter.com/legalsylvain)

- Benoit GUILLOT (benoit.guillot@akretion.com)

- Stéphane Bidoul (stephane.bidoul@acsone.eu)

- `Tecnativa <https://www.tecnativa.com>`__:

- Vicent Cubells
- Cristina Martin R.
- Carlos Roca
- Ernesto Tejeda

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/oca-custom <https://github.com/OCA/oca-custom/tree/18.0/oca_custom>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions oca_custom/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
21 changes: 21 additions & 0 deletions oca_custom/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright (C) 2016-Today: Odoo Community Association (OCA)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "OCA Custom Settings",
"summary": "Custom Settings for OCA Instance",
"version": "18.0.1.0.0",
"category": "Custom",
"website": "https://github.com/OCA/oca-custom",
"author": "GRAP, Akretion, Odoo Community Association (OCA)",
"license": "AGPL-3",
"depends": [
"github_connector",
'document_knowledge'
],
"data": [
"views/res_partner.xml",
"views/document_knowledge.xml",
],
"installable": True,
}
40 changes: 40 additions & 0 deletions oca_custom/i18n/oca_custom.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * oca_custom
#
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: oca_custom
#: model:ir.model,name:oca_custom.model_res_partner
msgid "Contact"
msgstr ""

#. module: oca_custom
#: model:ir.model.fields,field_description:oca_custom.field_res_partner__display_name
msgid "Display Name"
msgstr ""

#. module: oca_custom
#: model:ir.model.fields,field_description:oca_custom.field_res_partner__github_name
#: model:ir.model.fields,field_description:oca_custom.field_res_users__github_name
msgid "Github Technical Name"
msgstr ""

#. module: oca_custom
#: model:ir.model.fields,field_description:oca_custom.field_res_partner__id
msgid "ID"
msgstr ""

#. module: oca_custom
#: model:ir.model.fields,field_description:oca_custom.field_res_partner____last_update
msgid "Last Modified on"
msgstr ""
1 change: 1 addition & 0 deletions oca_custom/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import res_partner
11 changes: 11 additions & 0 deletions oca_custom/models/res_partner.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright (C) 2016-Today: Odoo Community Association (OCA)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from odoo import fields, models


class ResPartner(models.Model):
_inherit = "res.partner"

github_name = fields.Char(readonly=False)
3 changes: 3 additions & 0 deletions oca_custom/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
12 changes: 12 additions & 0 deletions oca_custom/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
- Sylvain LE GAL (<https://twitter.com/legalsylvain>)

- Benoit GUILLOT (<benoit.guillot@akretion.com>)

- Stéphane Bidoul (<stephane.bidoul@acsone.eu>)

- [Tecnativa](https://www.tecnativa.com):

> - Vicent Cubells
> - Cristina Martin R.
> - Carlos Roca
> - Ernesto Tejeda
1 change: 1 addition & 0 deletions oca_custom/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Custom module for OCA Instance.
Binary file added oca_custom/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading