You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
324 B

3 years ago
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. import requests
  4. import json
  5. from odoo import api, fields, models
  6. from datetime import datetime
  7. class PosTransaction(models.Model):
  8. _inherit = 'pos.transaction'
  9. is_pos = fields.Boolean("Est une transaction POS")