Advertisement
Guest User

Untitled

a guest
May 23rd, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. diff -r 9fec62e076a1 purchase.py
  2. --- a/purchase.py Mon Apr 22 12:18:26 2013 +0200
  3. +++ b/purchase.py Thu May 23 18:24:08 2013 +0200
  4. @@ -1,12 +1,14 @@
  5. # This file is part of Tryton. The COPYRIGHT file at the top level of this
  6. # repository contains the full copyright notices and license terms.
  7. +from trytond.model import Model
  8. from trytond.pool import PoolMeta
  9.  
  10. __all__ = ['PurchaseLine']
  11. __metaclass__ = PoolMeta
  12.  
  13.  
  14. -class PurchaseLine:
  15. +class PurchaseLine(Model):
  16. + 'PurchaseLine'
  17. __name__ = 'purchase.line'
  18.  
  19. @classmethod
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement