[FIX] pep8
authorolt@tinyerp.com <>
Mon, 29 Mar 2010 12:44:39 +0000 (14:44 +0200)
committerolt@tinyerp.com <>
Mon, 29 Mar 2010 12:44:39 +0000 (14:44 +0200)
bzr revid: olt@tinyerp.com-20100329124439-btnac81b4iiaje3x

addons/point_of_sale/wizard/pos_sales_user.py
addons/point_of_sale/wizard/pos_sales_user_current_user.py
addons/point_of_sale/wizard/pos_sales_user_today.py
addons/point_of_sale/wizard/wizard_default_journal.py
addons/point_of_sale/wizard/wizard_scan_product.py

index cbb2dda..7698bb9 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 ##############################################################################
-#    
+#
 #    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 #
 #    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 <http://www.gnu.org/licenses/>.     
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
 
-import netsvc
-from osv import osv,fields
+from osv import osv, fields
 from tools.translate import _
-from mx import DateTime
-import time
+
 
 class pos_sale_user(osv.osv_memory):
     _name = 'pos.sale.user'
     _description = 'Sale by User'
 
     _columns = {
-        'date_start': fields.date('Date Start',required=True),
-        'date_end': fields.date('Date End',required=True),
-        'user_id': fields.many2many('res.users', 'sale_user_rel', 'user_id', 'uid', 'Salesman'),        
+        'date_start': fields.date('Date Start', required=True),
+        'date_end': fields.date('Date End', required=True),
+        'user_id': fields.many2many('res.users', 'sale_user_rel', 'user_id', 'uid', 'Salesman'),
     }
-    
+
     def print_report(self, cr, uid, ids, context={}):
-        """ 
-         To get the date and print the report           
+        """
+         To get the date and print the report
          @param self: The object pointer.
          @param cr: A database cursor
          @param uid: ID of the user currently logged in
-         @param context: A standard dictionary 
+         @param context: A standard dictionary
          @return : return report
         """
-        
-        datas = {'ids' : context.get('active_ids', [])}
-        res = self.read(cr, uid, ids, ['date_start','date_end','user_id'], context)
-        res = res and res[0] or {}    
-        datas['form'] = res        
-        return { 
-            'type':'ir.actions.report.xml',
-            'report_name':'pos.sales.user',
-            'datas':datas,               
+
+        datas = {'ids': context.get('active_ids', [])}
+        res = self.read(cr, uid, ids, ['date_start', 'date_end', 'user_id'], context)
+        res = res and res[0] or {}
+        datas['form'] = res
+        return {
+            'type': 'ir.actions.report.xml',
+            'report_name': 'pos.sales.user',
+            'datas': datas,
        }
+
 pos_sale_user()
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
index 22ac95a..ac603ad 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 ##############################################################################
-#    
+#
 #    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 #
 #    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 <http://www.gnu.org/licenses/>.     
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
 
-import netsvc
-from osv import osv,fields
+from osv import osv
 from tools.translate import _
-from mx import DateTime
-import time
+
 
 class pos_sales_user_today_current_user(osv.osv_memory):
     _name = 'pos.sales.user.today.current_user'
@@ -31,27 +29,29 @@ class pos_sales_user_today_current_user(osv.osv_memory):
 
     _columns = {
     }
-    
+
     def print_report(self, cr, uid, ids, context={}):
-        """ 
-         To get the date and print the report           
+        """
+         To get the date and print the report
          @param self: The object pointer.
          @param cr: A database cursor
          @param uid: ID of the user currently logged in
-         @param context: A standard dictionary 
+         @param context: A standard dictionary
          @return : retrun report
         """
-        
-        datas = {'ids' : context.get('active_ids', [])}
+
+        datas = {'ids': context.get('active_ids', [])}
         res = self.read(cr, uid, ids, [], context)
-        res = res and res[0] or {}        
+        res = res and res[0] or {}
         datas['form'] = res
-        
-        return { 
-            'type':'ir.actions.report.xml',
-            'report_name':'pos.sales.user.today.current.user',
-            'datas':datas,               
+
+        return {
+            'type': 'ir.actions.report.xml',
+            'report_name': 'pos.sales.user.today.current.user',
+            'datas': datas,
        }
+
 pos_sales_user_today_current_user()
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
index 50464b6..7025275 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 ##############################################################################
-#    
+#
 #    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 #
 #    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 <http://www.gnu.org/licenses/>.     
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
 
-import netsvc
-from osv import osv,fields
+from osv import osv, fields
 from tools.translate import _
-from mx import DateTime
-import time
+
 
 class pos_sales_user_today(osv.osv_memory):
     _name = 'pos.sales.user.today'
@@ -32,27 +30,29 @@ class pos_sales_user_today(osv.osv_memory):
     _columns = {
        'user_id': fields.many2many('res.users', 'sale_user_rel_today', 'user_id', 'uid', 'Salesman'),
     }
-    
+
     def print_report(self, cr, uid, ids, context={}):
-        """ 
-         To get the date and print the report           
+        """
+         To get the date and print the report
          @param self: The object pointer.
          @param cr: A database cursor
          @param uid: ID of the user currently logged in
-         @param context: A standard dictionary 
+         @param context: A standard dictionary
          @return : retrun report
         """
-        
-        datas = {'ids' : context.get('active_ids', [])}
+
+        datas = {'ids': context.get('active_ids', [])}
         res = self.read(cr, uid, ids, ['user_id'], context)
-        res = res and res[0] or {}        
+        res = res and res[0] or {}
         datas['form'] = res
-        
-        return { 
-            'type':'ir.actions.report.xml',
-            'report_name':'pos.sales.user.today',
-            'datas':datas,               
+
+        return {
+            'type': 'ir.actions.report.xml',
+            'report_name': 'pos.sales.user.today',
+            'datas': datas,
        }
+
 pos_sales_user_today()
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
index bfe5925..a33042b 100644 (file)
@@ -1,7 +1,7 @@
 # -*- encoding: utf-8 -*-
 ##############################################################################
 #
-#    OpenERP, Open Source Management Solution  
+#    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 #    $Id$
 #
index 40a8a5b..04b1e64 100644 (file)
@@ -22,7 +22,6 @@
 
 import pooler
 import wizard
-from osv import osv
 
 form_gencod = """<?xml version="1.0"?>
 <form string="Scan product">
@@ -44,22 +43,24 @@ def _scan(self, cr, uid, data, context):
     result = pool.get('pos.order.line')._scan_product(cr, uid, data['form']['gencod'], 1, data['id'])
     return {'gencod': False}
 
+
 def _pre_init(self, cr, uid, data, context):
     return {'gencod': False}
 
+
 class pos_scan_product(wizard.interface):
     states = {
-        'init' : {'actions' : [_pre_init],
-                'result' : {
-                    'type': 'form',
-                    'arch': form_gencod,
-                    'fields': fields_gencod,
-                    'state': [('end','Cancel','gtk-cancel'),
-                              ('add', 'Add', 'gtk-ok', True)],
+        'init': {'actions' : [_pre_init],
+            'result': {
+               'type': 'form',
+               'arch': form_gencod,
+               'fields': fields_gencod,
+               'state': [('end', 'Cancel','gtk-cancel'),
+                         ('add', 'Add', 'gtk-ok', True)],
             }
         },
-        'add' : {'actions' : [_scan],
-                'result' : {
+        'add': {'actions' : [_scan],
+                'result': {
                     'type': 'state',
                     'state': 'init',
                 }