Browse Source
Merge pull request #118 from beescoop/12.0-add-beesdoo_pos_reporting
[12.0][ADD] beesdoo_pos_reporting
pull/149/head
Rémy Taymans
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
24 additions and
0 deletions
-
beesdoo_pos_reporting/__init__.py
-
beesdoo_pos_reporting/__manifest__.py
-
beesdoo_pos_reporting/models/__init__.py
-
beesdoo_pos_reporting/models/res_partner.py
|
|
@ -0,0 +1 @@ |
|
|
|
from . import models |
|
|
@ -0,0 +1,15 @@ |
|
|
|
# Copyright 2019 Coop IT Easy SCRLfs (<http://www.coopiteasy.be>) |
|
|
|
# - Elouan LE BARS - <houssine@coopiteasy.be> |
|
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). |
|
|
|
{ |
|
|
|
"name": "Beesdoo POS Reporting", |
|
|
|
"summary": "Enhance POS with features allowing statistics and reporting.", |
|
|
|
"description": "", |
|
|
|
"version": "12.0.1.0.0", |
|
|
|
"category": "Point of Sale", |
|
|
|
"website": "https://github.com/beescoop/Obeesdoo", |
|
|
|
"author": "Coop IT Easy SCRLfs", |
|
|
|
"license": "AGPL-3", |
|
|
|
"depends": ["point_of_sale"], |
|
|
|
"data": [], |
|
|
|
} |
|
|
@ -0,0 +1 @@ |
|
|
|
from . import res_partner |
|
|
@ -0,0 +1,7 @@ |
|
|
|
from odoo import fields, models |
|
|
|
|
|
|
|
|
|
|
|
class ResPartner(models.Model): |
|
|
|
_inherit = "res.partner" |
|
|
|
|
|
|
|
pos_order_count = fields.Integer(store=True,) |