Advertisement
Guest User

Untitled

a guest
Aug 8th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1.     def __init__(self):
  2.         super(SaleLine, self).__init__()
  3.         self._order.insert(0, ('sequence', 'ASC'))
  4.         self._error_messages.update({
  5.             'customer_location_required': 'The customer location is required!',
  6.             'missing_account_revenue': 'It misses '
  7.                     'an "Account Revenue" on product "%s"!',
  8.             'missing_account_revenue_property': 'It misses '
  9.                     'an "account Revenue" default property!',
  10.             })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement