Merge 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

Proposed by Nicola Malcontenti - Agile BG
Status: Merged
Merged at revision: 268
Proposed branch: lp:~agilebg/openerp-product-attributes/7.0-product-customer-code-extraction-improvements
Merge into: lp:~akretion-team/openerp-product-attributes/7.0-product-customer-code-extraction
Diff against target: 34 lines (+4/-4)
2 files modified
product_customer_code/product.py (+2/-2)
product_customer_code/product_customer_code.py (+2/-2)
To merge this branch: bzr merge lp:~agilebg/openerp-product-attributes/7.0-product-customer-code-extraction-improvements
Reviewer Review Type Date Requested Status
Lorenzo Battistini (community) code review Approve
Product Core Editors Pending
Review via email: mp+202899@code.launchpad.net

This proposal supersedes a proposal from 2014-01-21.

Description of the change

Replaced every reference to 'osv' with 'orm'

To post a comment you must log in.
Revision history for this message
Lorenzo Battistini (elbati) wrote : Posted in a previous version of this proposal
review: Needs Resubmitting
Revision history for this message
Lorenzo Battistini (elbati) :
review: Approve (code review)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== 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 @@
23# along with this program. If not, see <http://www.gnu.org/licenses/>.23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24#24#
25##############################################################################25##############################################################################
26from openerp.osv import osv, fields26from openerp.osv import orm, fields
27from openerp.tools.translate import _27from openerp.tools.translate import _
2828
2929
30class product_product(osv.Model):30class product_product(orm.Model):
31 _inherit = "product.product"31 _inherit = "product.product"
3232
33 _columns = {33 _columns = {
3434
=== 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 @@
23# along with this program. If not, see <http://www.gnu.org/licenses/>.23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24#24#
25##############################################################################25##############################################################################
26from openerp.osv import osv, fields26from openerp.osv import orm, fields
27from openerp.tools.translate import _27from openerp.tools.translate import _
2828
2929
30class product_customer_code(osv.Model):30class product_customer_code(orm.Model):
31 _name = "product.customer.code"31 _name = "product.customer.code"
32 _description = "Add manies Code of Customer's"32 _description = "Add manies Code of Customer's"
3333

Subscribers

People subscribed via source and target branches