Skip to content

Commit

Permalink
[ADD]repair_multicompany_ux:check_company
Browse files Browse the repository at this point in the history
  • Loading branch information
mav-adhoc committed Aug 28, 2023
1 parent 82087f1 commit a62fb9a
Show file tree
Hide file tree
Showing 5 changed files with 133 additions and 0 deletions.
70 changes: 70 additions & 0 deletions repair_multicompany_ux/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
.. |company| replace:: ADHOC SA

.. |company_logo| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-logo.png
:alt: ADHOC SA
:target: https://www.adhoc.com.ar

.. |icon| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-icon.png

.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

==============================
Payment Multicompany Usability
==============================

#. Allows a journal belonging to a company to be set on a Payment method taht belongs to another company

Installation
============

To install this module, you need to:

#. Only install the module

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

To configure this module, you need to:

#. Go to a Payment acquirer and select a journal that belongs to a different company than the Payment method
#. If the usage is intended to work on ecommerce Payment acquirers, the module website_sale_multic_ux must be installed as well

Usage
=====

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: http://runbot.adhoc.com.ar/

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

Bugs are tracked on `GitHub Issues
<https://github.com/ingadhoc/multi-company/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.

Credits
=======

.. |iconEficent| image:: https://avatars0.githubusercontent.com/u/7718403?s=200&v=4
:width: 13px
:height: 13px
:alt: Eficent

* |company| |icon|
* Eficent |iconEficent| Part of the code used for this module was extracted from Eficent's `multicompany-fixes/mcfix_accpount <https://github.com/Eficent/multicompany-fixes/tree/11.0/mcfix_account>`_ module

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

Maintainer
----------

|company_logo|

This module is maintained by the |company|.

To contribute to this module, please visit https://www.adhoc.com.ar.
1 change: 1 addition & 0 deletions repair_multicompany_ux/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
33 changes: 33 additions & 0 deletions repair_multicompany_ux/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
##############################################################################
#
# Copyright (C) 2015 ADHOC SA (http://www.adhoc.com.ar)
# All Rights Reserved.
#
# 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 <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Repair Multicompany Usability',
'version': "16.0.1.0.0",
'author': 'ADHOC SA',
'website': 'www.adhoc.com.ar',
'license': 'AGPL-3',
'depends': [
'repair'
],
'data': [],
'demo': [],
'installable': True,
'auto_install': False,
}
1 change: 1 addition & 0 deletions repair_multicompany_ux/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import repair
28 changes: 28 additions & 0 deletions repair_multicompany_ux/models/repair.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
from odoo import models, fields

class RepairFee(models.Model):
_inherit = 'repair.fee'

tax_id = fields.Many2many(
'account.tax',
'repair_fee_line_tax',
'repair_fee_line_id', 'tax_id',
'Taxes',
domain="[('type_tax_use','=','sale'), ('company_id', '=', company_id)]",
check_company=False)

invoice_line_id = fields.Many2one(
'account.move.line',
'Invoice Line',
copy=False, readonly=True,
check_company=False)

class RepairLine(models.Model):
_inherit = 'repair.line'

invoice_line_id = fields.Many2one(
'account.move.line',
'Invoice Line',
copy=False,
readonly=True,
check_company=False)

0 comments on commit a62fb9a

Please sign in to comment.