Advertisement
Guest User

Untitled

a guest
Oct 5th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class AmountSecretary(ModelSQL, ModelView):
  2. """
  3. Budget Allocation by Secretary
  4. """
  5. __name__ = 'budget.amount_secretary'
  6. category = fields.Many2One('product.category', 'Category', required=True)
  7. secretary = fields.Char('Secretary', required=True)
  8. amount = fields.Numeric('Amount', required=True, digits=(14, 3), readonly=True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement