~openerp-community/openobject-addons/removing_product_supplier_info_from_elico-7.0

« back to all changes in this revision

Viewing changes to base_intercompany/backend.py

  • Committer:
  • Date: 2014-01-21 07:15:34 UTC
  • mfrom: (22.1.2 elico-7.0)
  • Revision ID: elicoidal@hotmail.com-20140121071534-uw1wt0jfpbg8x1r9
[UPD] new version of intercompany modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (c) 2010-2013 Elico Corp. All Rights Reserved.
 
6
#    Augustin Cisterne-Kaas <augustin.cisterne-kaas@elico-corp.com>
 
7
#    Eric Caudal <eric.caudal@elico-corp.com>
 
8
 
 
9
#    This program is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU Affero General Public License as
 
11
#    published by the Free Software Foundation, either version 3 of the
 
12
#    License, or (at your option) any later version.
 
13
#
 
14
#    This program is distributed in the hope that it will be useful,
 
15
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
#    GNU Affero General Public License for more details.
 
18
#
 
19
#    You should have received a copy of the GNU Affero General Public License
 
20
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
#
 
22
##############################################################################
 
23
import openerp.addons.connector.backend as backend
 
24
 
 
25
 
 
26
icops = backend.Backend('icops')
 
27
""" Generic ICOPS Backend """
 
28
 
 
29
icops7 = backend.Backend(parent=icops, version='7.0')
 
30
""" ICOPS Backend for OpenERP 7 """