mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[14.0][MIG] account_mass_reconcile_by_purchase_line
[imp] security
This commit is contained in:
@@ -1,16 +1,16 @@
|
|||||||
# © 2015-18 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# Copyright 2020 ForgeFlow S.L.
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Account Mass Reconcile by Purchase Line",
|
"name": "Account Mass Reconcile by Purchase Line",
|
||||||
"summary": "Allows to reconcile based on the PO line",
|
"summary": "Allows to reconcile based on the PO line",
|
||||||
"version": "12.0.1.0.0",
|
"version": "14.0.1.0.0",
|
||||||
"author": "Eficent, " "Odoo Community Association (OCA)",
|
"author": "ForgeFlow, " "Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/account-reconcile",
|
"website": "https://github.com/OCA/account-reconcile",
|
||||||
"category": "Finance",
|
"category": "Finance",
|
||||||
"depends": ["account_mass_reconcile", "account_move_line_purchase_info",],
|
"depends": ["account_mass_reconcile", "account_move_line_purchase_info"],
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"data": ["views/mass_reconcile.xml",],
|
"data": ["security/ir.model.access.csv", "views/mass_reconcile.xml"],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
"auto_install": False,
|
"auto_install": False,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# © 2015-18 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# Copyright 2020 ForgeFlow S.L.
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from odoo import models
|
from odoo import models
|
||||||
|
|
||||||
@@ -7,6 +7,7 @@ from odoo import models
|
|||||||
class MassReconcileAdvancedByPurchaseLine(models.TransientModel):
|
class MassReconcileAdvancedByPurchaseLine(models.TransientModel):
|
||||||
_name = "mass.reconcile.advanced.by.purchase.line"
|
_name = "mass.reconcile.advanced.by.purchase.line"
|
||||||
_inherit = "mass.reconcile.advanced"
|
_inherit = "mass.reconcile.advanced"
|
||||||
|
_description = "Mass Reconcile By Purchase Line"
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _skip_line(move_line):
|
def _skip_line(move_line):
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# © 2015-18 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# Copyright 2020 ForgeFlow S.L.
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from odoo import models
|
from odoo import models
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# © 2015-18 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# Copyright 2020 ForgeFlow S.L.
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from odoo import models
|
from odoo import models
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
* Jordi Ballester Alomar <jordi.ballester@eficent.com>
|
* Jordi Ballester Alomar <jordi.ballester@forgeflow.com>
|
||||||
* Miquel Raïch <miquel.raich@eficent.com>
|
* Miquel Raïch <miquel.raich@forgeflow.com>
|
||||||
* Lois Rilo <lois.rilo@eficent.com>
|
* Lois Rilo <lois.rilo@forgeflow.com>
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||||
|
access_mass_reconcile_advanced_by_purchase_line,access_mass_reconcile_advanced_by_purchase_line,model_mass_reconcile_advanced_by_purchase_line,base.group_user,1,1,1,1
|
||||||
|
@@ -0,0 +1 @@
|
|||||||
|
../../../../account_mass_reconcile_by_purchase_line
|
||||||
6
setup/account_mass_reconcile_by_purchase_line/setup.py
Normal file
6
setup/account_mass_reconcile_by_purchase_line/setup.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import setuptools
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
setup_requires=['setuptools-odoo'],
|
||||||
|
odoo_addon=True,
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user