Skip to content

Commit

Permalink
Merge ee87c9c into aa2175c
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Jan 14, 2020
2 parents aa2175c + ee87c9c commit ebda7f0
Show file tree
Hide file tree
Showing 94 changed files with 1,771 additions and 1,180 deletions.
2 changes: 1 addition & 1 deletion recurring_consignment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- encoding: utf-8 -*-
from . import models
from . import wizards
35 changes: 35 additions & 0 deletions recurring_consignment/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright (C) 2014 - Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': 'Recurring Consignment',
'version': "12.0.1.0.0",
'summary': 'Sale - Handle Recurring Consignment',
'category': 'Sale',
'author': 'GRAP',
'website': 'http://www.grap.coop',
'license': 'AGPL-3',
'depends': [
'account',
'account_product_fiscal_classification',
],
'data': [
'security/ir_module_category.xml',
'security/res_groups.xml',
'views/menu.xml',
'wizards/view_invoice_commission_wizard.xml',
'wizards/view_consignor_create_wizard.xml',
# 'views/view_account_invoice.xml',
'views/view_account_tax.xml',
'views/view_account_product_fiscal_classification.xml',
'views/view_product_template.xml',
'views/view_res_partner.xml',
'views/view_product_pricelist.xml',
'report/report_account_invoice.xml',
],
'demo': [
'demo/res_groups.xml',
],
'installable': True,
}
55 changes: 0 additions & 55 deletions recurring_consignment/__openerp__.py

This file was deleted.

25 changes: 0 additions & 25 deletions recurring_consignment/demo/account_account.xml

This file was deleted.

65 changes: 0 additions & 65 deletions recurring_consignment/demo/account_tax.xml

This file was deleted.

29 changes: 0 additions & 29 deletions recurring_consignment/demo/account_tax_code.xml

This file was deleted.

44 changes: 0 additions & 44 deletions recurring_consignment/demo/product_pricelist.xml

This file was deleted.

22 changes: 5 additions & 17 deletions recurring_consignment/demo/res_groups.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,18 @@ Copyright (C) 2015 - Today: GRAP (http://www.grap.coop)
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<openerp><data>
<odoo>

<record id="account.group_account_manager" model="res.groups">
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>

<record id="base.group_sale_manager" model="res.groups">
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>

<record id="base.group_no_one" model="res.groups">
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>

<record id="product.group_sale_pricelist" model="res.groups">
<field name="users" eval="[(4, ref('base.user_root'))]"/>
<record id="account.group_account_user" model="res.groups">
<field name="users" eval="[(4, ref('base.user_admin'))]"/>
</record>

<record id="group_consignment_manager" model="res.groups">
<field name="users" eval="[(4, ref('base.user_root'))]"/>
<field name="users" eval="[(4, ref('base.user_admin'))]"/>
</record>

<record id="group_consignment_user" model="res.groups">
<field name="users" eval="[(4, ref('base.user_demo'))]"/>
</record>

</data></openerp>
</odoo>
32 changes: 0 additions & 32 deletions recurring_consignment/demo/sale_order.xml

This file was deleted.

11 changes: 1 addition & 10 deletions recurring_consignment/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
# coding: utf-8

from . import account_invoice
from . import account_invoice_line
from . import account_product_fiscal_classification
from . import account_voucher
from . import account_tax
from . import account_tax_code
from . import account_move_line
from . import pos_order
from . import product_pricelist
from . import product_pricelist_item
from . import product_product
from . import product_template
from . import purchase_order
from . import res_partner
from . import sale_order
from . import sale_order_line

from . import invoice_commission_wizard
Loading

0 comments on commit ebda7f0

Please sign in to comment.