openerp-community-reviewer team mailing list archive
-
openerp-community-reviewer team
-
Mailing list archive
-
Message #03151
lp:~agilebg/openerp-product-attributes/7.0-product-customer-code-extraction-improvements into lp:~akretion-team/openerp-product-attributes/7.0-product-customer-code-extraction
Nicola Malcontenti - Agile BG has proposed merging lp:~agilebg/openerp-product-attributes/7.0-product-customer-code-extraction-improvements into lp:~akretion-team/openerp-product-attributes/7.0-product-customer-code-extraction.
Requested reviews:
Lorenzo Battistini - Agile BG (elbati)
Product Core Editors (product-core-editors)
For more details, see:
https://code.launchpad.net/~agilebg/openerp-product-attributes/7.0-product-customer-code-extraction-improvements/+merge/202899
Replaced every reference to 'osv' with 'orm'
--
https://code.launchpad.net/~agilebg/openerp-product-attributes/7.0-product-customer-code-extraction-improvements/+merge/202899
Your team Product Core Editors is requested to review the proposed merge of lp:~agilebg/openerp-product-attributes/7.0-product-customer-code-extraction-improvements into lp:~akretion-team/openerp-product-attributes/7.0-product-customer-code-extraction.
=== modified file 'product_customer_code/product.py'
--- product_customer_code/product.py 2013-12-13 12:33:11 +0000
+++ product_customer_code/product.py 2014-01-23 17:11:50 +0000
@@ -23,11 +23,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
-from openerp.osv import osv, fields
+from openerp.osv import orm, fields
from openerp.tools.translate import _
-class product_product(osv.Model):
+class product_product(orm.Model):
_inherit = "product.product"
_columns = {
=== modified file 'product_customer_code/product_customer_code.py'
--- product_customer_code/product_customer_code.py 2013-12-13 12:32:53 +0000
+++ product_customer_code/product_customer_code.py 2014-01-23 17:11:50 +0000
@@ -23,11 +23,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
-from openerp.osv import osv, fields
+from openerp.osv import orm, fields
from openerp.tools.translate import _
-class product_customer_code(osv.Model):
+class product_customer_code(orm.Model):
_name = "product.customer.code"
_description = "Add manies Code of Customer's"
Follow ups