[IMP] CamelCase class names

This commit is contained in:
Stéphane Bidoul
2014-11-16 18:35:04 +01:00
parent ff39774a96
commit d88abb929b
3 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ from openerp.osv import orm, fields
from openerp.tools.translate import _
class payment_order(orm.Model):
class PaymentOrder(orm.Model):
'''
Enable extra states for payment exports
'''

View File

@@ -28,7 +28,7 @@ from openerp import workflow
from openerp.tools.translate import _
class payment_line(orm.Model):
class PaymentLine(orm.Model):
'''
Add some fields; make destination bank account
mandatory, as it makes no sense to send payments into thin air.

View File

@@ -26,7 +26,7 @@
from openerp.osv import orm, fields
class payment_mode(orm.Model):
class PaymentMode(orm.Model):
_inherit = "payment.mode"
_columns = {