From: Christophe Simonis Date: Fri, 5 Sep 2014 13:28:22 +0000 (+0200) Subject: [MERGE] forward port of branch 8.0 up to ed1c173 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=31bf30d2d0eb78baaa36360b99fe58bf7cd4c9e7;p=odoo%2Fodoo.git [MERGE] forward port of branch 8.0 up to ed1c173 --- 31bf30d2d0eb78baaa36360b99fe58bf7cd4c9e7 diff --cc addons/account/report/account_analytic_entries_report_view.xml index ac0551d,d18a0ba..ce1abf8 --- a/addons/account/report/account_analytic_entries_report_view.xml +++ b/addons/account/report/account_analytic_entries_report_view.xml @@@ -12,15 -12,13 +12,13 @@@ - - - - - - - - - + - - ++ ++ + + + + diff --cc addons/analytic/models/analytic.py index 340a37f,0000000..4661a3f mode 100644,000000..100644 --- a/addons/analytic/models/analytic.py +++ b/addons/analytic/models/analytic.py @@@ -1,377 -1,0 +1,377 @@@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import time +from datetime import datetime + +from openerp.osv import fields, osv +from openerp import tools +from openerp.tools.translate import _ +import openerp.addons.decimal_precision as dp + +class account_analytic_account(osv.osv): + _name = 'account.analytic.account' + _inherit = ['mail.thread'] + _description = 'Analytic Account' + _track = { + 'state': { + 'analytic.mt_account_pending': lambda self, cr, uid, obj, ctx=None: obj.state == 'pending', + 'analytic.mt_account_closed': lambda self, cr, uid, obj, ctx=None: obj.state == 'close', + 'analytic.mt_account_opened': lambda self, cr, uid, obj, ctx=None: obj.state == 'open', + }, + } + + def _compute_level_tree(self, cr, uid, ids, child_ids, res, field_names, context=None): + currency_obj = self.pool.get('res.currency') + recres = {} + def recursive_computation(account): + result2 = res[account.id].copy() + for son in account.child_ids: + result = recursive_computation(son) + for field in field_names: + if (account.currency_id.id != son.currency_id.id) and (field!='quantity'): + result[field] = currency_obj.compute(cr, uid, son.currency_id.id, account.currency_id.id, result[field], context=context) + result2[field] += result[field] + return result2 + for account in self.browse(cr, uid, ids, context=context): + if account.id not in child_ids: + continue + recres[account.id] = recursive_computation(account) + return recres + + def _debit_credit_bal_qtty(self, cr, uid, ids, fields, arg, context=None): + res = {} + if context is None: + context = {} + child_ids = tuple(self.search(cr, uid, [('parent_id', 'child_of', ids)])) + for i in child_ids: + res[i] = {} + for n in fields: + res[i][n] = 0.0 + + if not child_ids: + return res + + where_date = '' + where_clause_args = [tuple(child_ids)] + if context.get('from_date', False): + where_date += " AND l.date >= %s" + where_clause_args += [context['from_date']] + if context.get('to_date', False): + where_date += " AND l.date <= %s" + where_clause_args += [context['to_date']] + cr.execute(""" + SELECT a.id, + sum( + CASE WHEN l.amount > 0 + THEN l.amount + ELSE 0.0 + END + ) as debit, + sum( + CASE WHEN l.amount < 0 + THEN -l.amount + ELSE 0.0 + END + ) as credit, + COALESCE(SUM(l.amount),0) AS balance, + COALESCE(SUM(l.unit_amount),0) AS quantity + FROM account_analytic_account a + LEFT JOIN account_analytic_line l ON (a.id = l.account_id) + WHERE a.id IN %s + """ + where_date + """ + GROUP BY a.id""", where_clause_args) + for row in cr.dictfetchall(): + res[row['id']] = {} + for field in fields: + res[row['id']][field] = row[field] + return self._compute_level_tree(cr, uid, ids, child_ids, res, fields, context) + + def name_get(self, cr, uid, ids, context=None): + res = [] + if not ids: + return res + if isinstance(ids, (int, long)): + ids = [ids] + for id in ids: + elmt = self.browse(cr, uid, id, context=context) + res.append((id, self._get_one_full_name(elmt))) + return res + + def _get_full_name(self, cr, uid, ids, name=None, args=None, context=None): + if context == None: + context = {} + res = {} + for elmt in self.browse(cr, uid, ids, context=context): + res[elmt.id] = self._get_one_full_name(elmt) + return res + + def _get_one_full_name(self, elmt, level=6): + if level<=0: + return '...' + if elmt.parent_id and not elmt.type == 'template': + parent_path = self._get_one_full_name(elmt.parent_id, level-1) + " / " + else: + parent_path = '' + return parent_path + elmt.name + + def _child_compute(self, cr, uid, ids, name, arg, context=None): + result = {} + if context is None: + context = {} + + for account in self.browse(cr, uid, ids, context=context): + result[account.id] = map(lambda x: x.id, [child for child in account.child_ids if child.state != 'template']) + + return result + + def _get_analytic_account(self, cr, uid, ids, context=None): + company_obj = self.pool.get('res.company') + analytic_obj = self.pool.get('account.analytic.account') + accounts = [] + for company in company_obj.browse(cr, uid, ids, context=context): + accounts += analytic_obj.search(cr, uid, [('company_id', '=', company.id)]) + return accounts + + def _set_company_currency(self, cr, uid, ids, name, value, arg, context=None): + if isinstance(ids, (int, long)): + ids=[ids] + for account in self.browse(cr, uid, ids, context=context): + if account.company_id: + if account.company_id.currency_id.id != value: + raise osv.except_osv(_('Error!'), _("If you set a company, the currency selected has to be the same as it's currency. \nYou can remove the company belonging, and thus change the currency, only on analytic account of type 'view'. This can be really useful for consolidation purposes of several companies charts with different currencies, for example.")) + if value: + cr.execute("""update account_analytic_account set currency_id=%s where id=%s""", (value, account.id)) + self.invalidate_cache(cr, uid, ['currency_id'], [account.id], context=context) + + def _currency(self, cr, uid, ids, field_name, arg, context=None): + result = {} + for rec in self.browse(cr, uid, ids, context=context): + if rec.company_id: + result[rec.id] = rec.company_id.currency_id.id + else: + result[rec.id] = rec.currency_id.id + return result + + _columns = { + 'name': fields.char('Account/Contract Name', required=True, track_visibility='onchange'), + 'complete_name': fields.function(_get_full_name, type='char', string='Full Name'), + 'code': fields.char('Reference', select=True, track_visibility='onchange', copy=False), + 'type': fields.selection([('view','Analytic View'), ('normal','Analytic Account'),('contract','Contract or Project'),('template','Template of Contract')], 'Type of Account', required=True, + help="If you select the View Type, it means you won\'t allow to create journal entries using that account.\n"\ + "The type 'Analytic account' stands for usual accounts that you only want to use in accounting.\n"\ + "If you select Contract or Project, it offers you the possibility to manage the validity and the invoicing options for this account.\n"\ + "The special type 'Template of Contract' allows you to define a template with default data that you can reuse easily."), + 'template_id': fields.many2one('account.analytic.account', 'Template of Contract'), + 'description': fields.text('Description'), + 'parent_id': fields.many2one('account.analytic.account', 'Parent Analytic Account', select=2), + 'child_ids': fields.one2many('account.analytic.account', 'parent_id', 'Child Accounts'), + 'child_complete_ids': fields.function(_child_compute, relation='account.analytic.account', string="Account Hierarchy", type='many2many'), + 'line_ids': fields.one2many('account.analytic.line', 'account_id', 'Analytic Entries'), + 'balance': fields.function(_debit_credit_bal_qtty, type='float', string='Balance', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')), + 'debit': fields.function(_debit_credit_bal_qtty, type='float', string='Debit', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')), + 'credit': fields.function(_debit_credit_bal_qtty, type='float', string='Credit', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')), + 'quantity': fields.function(_debit_credit_bal_qtty, type='float', string='Quantity', multi='debit_credit_bal_qtty'), + 'quantity_max': fields.float('Prepaid Service Units', help='Sets the higher limit of time to work on the contract, based on the timesheet. (for instance, number of hours in a limited support contract.)'), + 'partner_id': fields.many2one('res.partner', 'Customer'), + 'user_id': fields.many2one('res.users', 'Project Manager', track_visibility='onchange'), + 'manager_id': fields.many2one('res.users', 'Account Manager', track_visibility='onchange'), + 'date_start': fields.date('Start Date'), + 'date': fields.date('Expiration Date', select=True, track_visibility='onchange'), + 'company_id': fields.many2one('res.company', 'Company', required=False), #not required because we want to allow different companies to use the same chart of account, except for leaf accounts. + 'state': fields.selection([('template', 'Template'), + ('draft','New'), + ('open','In Progress'), + ('pending','To Renew'), + ('close','Closed'), + ('cancelled', 'Cancelled')], + 'Status', required=True, + track_visibility='onchange', copy=False), + 'currency_id': fields.function(_currency, fnct_inv=_set_company_currency, #the currency_id field is readonly except if it's a view account and if there is no company + store = { + 'res.company': (_get_analytic_account, ['currency_id'], 10), + }, string='Currency', type='many2one', relation='res.currency'), + } + + def on_change_template(self, cr, uid, ids, template_id, date_start=False, context=None): + if not template_id: + return {} + res = {'value':{}} + template = self.browse(cr, uid, template_id, context=context) + if template.date_start and template.date: + from_dt = datetime.strptime(template.date_start, tools.DEFAULT_SERVER_DATE_FORMAT) + to_dt = datetime.strptime(template.date, tools.DEFAULT_SERVER_DATE_FORMAT) + timedelta = to_dt - from_dt + res['value']['date'] = datetime.strftime(datetime.now() + timedelta, tools.DEFAULT_SERVER_DATE_FORMAT) + if not date_start: + res['value']['date_start'] = fields.date.today() + res['value']['quantity_max'] = template.quantity_max + res['value']['parent_id'] = template.parent_id and template.parent_id.id or False + res['value']['description'] = template.description + return res + + def on_change_partner_id(self, cr, uid, ids,partner_id, name, context=None): + res={} + if partner_id: + partner = self.pool.get('res.partner').browse(cr, uid, partner_id, context=context) + if partner.user_id: + res['manager_id'] = partner.user_id.id + if not name: + res['name'] = _('Contract: ') + partner.name + return {'value': res} + + def _default_company(self, cr, uid, context=None): + user = self.pool.get('res.users').browse(cr, uid, uid, context=context) + if user.company_id: + return user.company_id.id + return self.pool.get('res.company').search(cr, uid, [('parent_id', '=', False)])[0] + + def _get_default_currency(self, cr, uid, context=None): + user = self.pool.get('res.users').browse(cr, uid, uid, context=context) + return user.company_id.currency_id.id + + _defaults = { + 'type': 'normal', + 'company_id': _default_company, + 'code' : lambda obj, cr, uid, context: obj.pool.get('ir.sequence').get(cr, uid, 'account.analytic.account'), + 'state': 'open', + 'user_id': lambda self, cr, uid, ctx: uid, + 'partner_id': lambda self, cr, uid, ctx: ctx.get('partner_id', False), + 'date_start': lambda *a: time.strftime('%Y-%m-%d'), + 'currency_id': _get_default_currency, + } + + def check_recursion(self, cr, uid, ids, context=None, parent=None): + return super(account_analytic_account, self)._check_recursion(cr, uid, ids, context=context, parent=parent) + + _order = 'code, name asc' + _constraints = [ + (check_recursion, 'Error! You cannot create recursive analytic accounts.', ['parent_id']), + ] + + def name_create(self, cr, uid, name, context=None): + raise osv.except_osv(_('Warning'), _("Quick account creation disallowed.")) + + def copy(self, cr, uid, id, default=None, context=None): + if not default: + default = {} + analytic = self.browse(cr, uid, id, context=context) + default['name'] = _("%s (copy)") % analytic['name'] + return super(account_analytic_account, self).copy(cr, uid, id, default, context=context) + + def on_change_company(self, cr, uid, id, company_id): + if not company_id: + return {} + currency = self.pool.get('res.company').read(cr, uid, [company_id], ['currency_id'])[0]['currency_id'] + return {'value': {'currency_id': currency}} + + def on_change_parent(self, cr, uid, id, parent_id): + if not parent_id: + return {} + parent = self.read(cr, uid, [parent_id], ['partner_id','code'])[0] + if parent['partner_id']: + partner = parent['partner_id'][0] + else: + partner = False + res = {'value': {}} + if partner: + res['value']['partner_id'] = partner + return res + + def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100): + if not args: + args=[] + if context is None: + context={} + if name: + account_ids = self.search(cr, uid, [('code', '=', name)] + args, limit=limit, context=context) + if not account_ids: + dom = [] + for name2 in name.split('/'): + name = name2.strip() - account_ids = self.search(cr, uid, dom + [('name', 'ilike', name)] + args, limit=limit, context=context) ++ account_ids = self.search(cr, uid, dom + [('name', operator, name)] + args, limit=limit, context=context) + if not account_ids: break + dom = [('parent_id','in',account_ids)] + else: + account_ids = self.search(cr, uid, args, limit=limit, context=context) + return self.name_get(cr, uid, account_ids, context=context) + +class account_analytic_line(osv.osv): + _name = 'account.analytic.line' + _description = 'Analytic Line' + + _columns = { + 'name': fields.char('Description', required=True), + 'date': fields.date('Date', required=True, select=True), + 'amount': fields.float('Amount', required=True, help='Calculated by multiplying the quantity and the price given in the Product\'s cost price. Always expressed in the company main currency.', digits_compute=dp.get_precision('Account')), + 'unit_amount': fields.float('Quantity', help='Specifies the amount of quantity to count.'), + 'account_id': fields.many2one('account.analytic.account', 'Analytic Account', required=True, ondelete='restrict', select=True, domain=[('type','<>','view')]), + 'user_id': fields.many2one('res.users', 'User'), + 'company_id': fields.related('account_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True), + 'journal_id': fields.many2one('account.analytic.journal', 'Analytic Journal', required=True, ondelete='restrict', select=True), + + } + + def _get_default_date(self, cr, uid, context=None): + return fields.date.context_today(self, cr, uid, context=context) + + def __get_default_date(self, cr, uid, context=None): + return self._get_default_date(cr, uid, context=context) + + _defaults = { + 'date': __get_default_date, + 'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.analytic.line', context=c), + 'amount': 0.00 + } + + _order = 'date desc' + + def _check_no_view(self, cr, uid, ids, context=None): + analytic_lines = self.browse(cr, uid, ids, context=context) + for line in analytic_lines: + if line.account_id.type == 'view': + return False + return True + + _constraints = [ + (_check_no_view, 'You cannot create analytic line on view account.', ['account_id']), + ] + + +class account_analytic_journal(osv.osv): + _name = 'account.analytic.journal' + _description = 'Analytic Journal' + _columns = { + 'name': fields.char('Journal Name', required=True), + 'code': fields.char('Journal Code', size=8), + 'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the analytic journal without removing it."), + 'type': fields.selection( + [('sale', 'Sale'), ('purchase', 'Purchase'), ('cash', 'Cash'), + ('general', 'General'), ('situation', 'Situation')], + 'Type', required=True, help="Gives the type of the analytic journal. When it needs for a document (eg: an invoice) to create analytic entries, Odoo will look for a matching journal of the same type."), + 'line_ids': fields.one2many('account.analytic.line', 'journal_id', 'Lines'), + 'company_id': fields.many2one('res.company', 'Company', required=True), + } + _defaults = { + 'active': True, + 'type': 'general', + 'company_id': lambda self, cr, uid, c=None: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id, + } diff --cc addons/crm/crm_lead_view.xml index 4af6672,07c9f05..17e231c --- a/addons/crm/crm_lead_view.xml +++ b/addons/crm/crm_lead_view.xml @@@ -101,10 -101,10 +101,10 @@@
-
@@@ -379,13 -379,13 +379,13 @@@ domain="['&', ('section_ids', '=', section_id), '|', ('type', '=', type), ('type', '=', 'both')]"/> -
+
- - - diff --cc addons/hw_scale/__openerp__.py index 19b72f5,9808577..85670ae --- a/addons/hw_scale/__openerp__.py +++ b/addons/hw_scale/__openerp__.py @@@ -26,8 -26,9 +26,9 @@@ 'category': 'Hardware Drivers', 'sequence': 6, 'summary': 'Hardware Driver for Weighting Scales', + 'website': 'https://www.odoo.com/page/point-of-sale', 'description': """ -Barcode Scanner Hardware Driver +Weighting Scale Hardware Driver ================================ This module allows the point of sale to connect to a scale using a USB HSM Serial Scale Interface, diff --cc addons/l10n_be_coda/wizard/account_coda_import.py index 5790e50,3dec320..85dc2f3 --- a/addons/l10n_be_coda/wizard/account_coda_import.py +++ b/addons/l10n_be_coda/wizard/account_coda_import.py @@@ -30,18 -30,36 +30,19 @@@ import loggin _logger = logging.getLogger(__name__) -class account_coda_import(osv.osv_memory): - _name = 'account.coda.import' - _description = 'Import CODA File' - _columns = { - 'coda_data': fields.binary('CODA File', required=True), - 'coda_fname': fields.char('CODA Filename', required=True), - 'note': fields.text('Log'), - } +from openerp.addons.account_bank_statement_import import account_bank_statement_import as coda_ibs - _defaults = { - 'coda_fname': 'coda.txt', - } +coda_ibs.add_file_type(('coda', 'CODA')) - def coda_parsing(self, cr, uid, ids, context=None, batch=False, codafile=None, codafilename=None): +class account_bank_statement_import(osv.TransientModel): + _inherit = "account.bank.statement.import" + + def process_coda(self, cr, uid, codafile=None, journal_id=False, context=None): if context is None: context = {} - if batch: - codafile = str(codafile) - codafilename = codafilename - else: - data = self.browse(cr, uid, ids)[0] - try: - codafile = data.coda_data - codafilename = data.coda_fname - except: - raise osv.except_osv(_('Error'), _('Wizard in incorrect state. Please hit the Cancel button')) - return {} recordlist = unicode(base64.decodestring(codafile), 'windows-1252', 'strict').split('\n') statements = [] + globalisation_comm = {} for line in recordlist: if not line: pass @@@ -273,33 -285,53 +268,32 @@@ if 'counterpartyAddress' in line and line['counterpartyAddress'] != '': note.append(_('Counter Party Address') + ': ' + line['counterpartyAddress']) - line['name'] = "\n".join(filter(None, [line['counterpartyName'], line['communication']])) - structured_com = "" - partner_id = None + structured_com = False - bank_account_id = False if line['communication_struct'] and 'communication_type' in line and line['communication_type'] == '101': structured_com = line['communication'] + bank_account_id = False + partner_id = False if 'counterpartyNumber' in line and line['counterpartyNumber']: - ids = self.pool.get('res.partner.bank').search(cr, uid, [('acc_number', '=', str(line['counterpartyNumber']))]) - if ids: - bank_account_id = ids[0] - partner_id = self.pool.get('res.partner.bank').browse(cr, uid, bank_account_id, context=context).partner_id.id - else: - #create the bank account, not linked to any partner. The reconciliation will link the partner manually - #chosen at the bank statement final confirmation time. - try: - type_model, type_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base', 'bank_normal') - type_id = self.pool.get('res.partner.bank.type').browse(cr, uid, type_id, context=context) - bank_code = type_id.code - except ValueError: - bank_code = 'bank' - bank_account_id = self.pool.get('res.partner.bank').create(cr, uid, {'acc_number': str(line['counterpartyNumber']), 'state': bank_code}, context=context) + bank_account_id, partner_id = self._detect_partner(cr, uid, str(line['counterpartyNumber']), identifying_field='acc_number', context=context) - if 'communication' in line and line['communication'] != '': + if line.get('communication', ''): note.append(_('Communication') + ': ' + line['communication']) - data = { + line_data = { - 'name': line['name'], + 'name': structured_com or (line.get('communication', '') != '' and line['communication'] or '/'), 'note': "\n".join(note), 'date': line['entryDate'], 'amount': line['amount'], 'partner_id': partner_id, - 'ref': structured_com, + 'partner_name': line['counterpartyName'], - 'statement_id': statement['id'], + 'ref': line['ref'], 'sequence': line['sequence'], 'bank_account_id': bank_account_id, } - self.pool.get('account.bank.statement.line').create(cr, uid, data, context=context) + statement_line.append((0, 0, line_data)) if statement['coda_note'] != '': - self.pool.get('account.bank.statement').write(cr, uid, [statement['id']], {'coda_note': statement['coda_note']}, context=context) - model, action_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account', 'action_bank_reconcile_bank_statements') - action = self.pool[model].browse(cr, uid, action_id, context=context) - statements_ids = [statement['id'] for statement in statements] - return { - 'name': action.name, - 'tag': action.tag, - 'context': {'statement_ids': statements_ids}, - 'type': 'ir.actions.client', - } + statement_data.update({'coda_note': statement['coda_note']}) + statement_data.update({'journal_id': journal_id, 'line_ids': statement_line}) + return [statement_data] - def rmspaces(s): return " ".join(s.split()) diff --cc addons/mass_mailing/views/website_mass_mailing.xml index b42992d,b76b48e..9982696 --- a/addons/mass_mailing/views/website_mass_mailing.xml +++ b/addons/mass_mailing/views/website_mass_mailing.xml @@@ -1,18 -1,16 +1,21 @@@ - - - - + + diff --cc addons/mrp/mrp.py index 3c41f7e,9e6afe3..ae9990b --- a/addons/mrp/mrp.py +++ b/addons/mrp/mrp.py @@@ -195,12 -195,12 +195,12 @@@ class mrp_bom(osv.osv) 'name': fields.char('Name'), 'code': fields.char('Reference', size=16), 'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the bills of material without removing it."), - 'type': fields.selection([('normal', 'Normal'), ('phantom', 'Set')], 'BoM Type', required=True, + 'type': fields.selection([('normal','Manufacture this product as a normal bill of material'),('phantom','Sell and ship this product as a set of components(phantom)')], 'BoM Type', required=True, help= "Set: When processing a sales order for this product, the delivery order will contain the raw materials, instead of the finished product."), 'position': fields.char('Internal Reference', help="Reference to a position in an external plan."), - 'product_tmpl_id': fields.many2one('product.template', 'Product', required=True), + 'product_tmpl_id': fields.many2one('product.template', 'Product', domain="[('type', '!=', 'service')]", required=True), 'product_id': fields.many2one('product.product', 'Product Variant', - domain="[('product_tmpl_id','=',product_tmpl_id)]", + domain="['&', ('product_tmpl_id','=',product_tmpl_id), ('type','!=', 'service')]", help="If a product variant is defined the BOM is available only for this product."), 'bom_line_ids': fields.one2many('mrp.bom.line', 'bom_id', 'BoM Lines', copy=True), 'product_qty': fields.float('Product Quantity', required=True, digits_compute=dp.get_precision('Product Unit of Measure')), diff --cc addons/point_of_sale/controllers/main.py index d694c34,9a66594..0f26ba5 --- a/addons/point_of_sale/controllers/main.py +++ b/addons/point_of_sale/controllers/main.py @@@ -10,10 -15,30 +10,15 @@@ _logger = logging.getLogger(__name__ class PosController(http.Controller): - @http.route('/pos/web', type='http', auth='none') + @http.route('/pos/web', type='http', auth='user') def a(self, debug=False, **k): + cr, uid, context, session = request.cr, request.uid, request.context, request.session - if not request.session.uid: + if not session.uid: return login_redirect() + PosSession = request.registry['pos.session'] + pos_session_ids = PosSession.search(cr, uid, [('state','=','opened'),('user_id','=',session.uid)], context=context) - PosSession.login(cr,uid,pos_session_ids,context=context) ++ PosSession.login(cr, uid, pos_session_ids, context=context) + - modules = simplejson.dumps(module_boot(request.db)) - init = """ - var wc = new s.web.WebClient(); - wc.show_application = function(){ - wc.action_manager.do_action("pos.ui"); - }; - wc.setElement($(document.body)); - wc.start(); - """ - - html = request.registry.get('ir.ui.view').render(cr, session.uid,'point_of_sale.index',{ - 'modules': modules, - 'init': init, - }) - - return html + return request.render('point_of_sale.index') diff --cc addons/point_of_sale/report/pos_order_report.py index 8e42eca,8227590..abdf384 --- a/addons/point_of_sale/report/pos_order_report.py +++ b/addons/point_of_sale/report/pos_order_report.py @@@ -64,14 -66,15 +66,15 @@@ class pos_order_report(osv.osv) s.location_id as location_id, s.company_id as company_id, s.sale_journal as journal_id, - l.product_id as product_id + l.product_id as product_id, + pt.categ_id as product_categ_id from pos_order_line as l left join pos_order s on (s.id=l.order_id) - left join product_product p on (p.id=l.product_id) - left join product_template pt on (pt.id=p.product_tmpl_id) + left join product_product p on (l.product_id=p.id) + left join product_template pt on (p.product_tmpl_id=pt.id) left join product_uom u on (u.id=pt.uom_id) group by - s.date_order, s.partner_id,s.state, + s.date_order, s.partner_id,s.state, pt.categ_id, s.user_id,s.location_id,s.company_id,s.sale_journal,l.product_id,s.create_date having sum(l.qty * u.factor) != 0)""") diff --cc addons/point_of_sale/res_partner_view.xml index a5c5279,f1aecca..f18bcb5 --- a/addons/point_of_sale/res_partner_view.xml +++ b/addons/point_of_sale/res_partner_view.xml @@@ -7,12 -7,14 +7,12 @@@ res.partner - - - - -