Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
3 Antwoorden
13516 Weergaven

If I understand correctly, each POS admits only one concurrent user. That is, if I want to have two point in a department I need two POS.

But now if I have (said user_1) on main pos in a physical selling point then in the other physical selling point the systems allow me to enter in the same pos (main) with another user... and then raises an exception (TypeError in models.js, "self.get(...) is undefined") which can't be recovered from the pos interface, leaving me with a blocked terminal showing the error (but can't press any button or going back).

If my first impression is right (only one user concurrent) why allows me to enter with other user? and if not, why this error?

Any suggestions? maybe I have to fill a bug?

Thanks

Avatar
Annuleer

The same happened to me ...

One user per Pos Session: it is a matter of responsibility within your company; this is an "internal control" issue. Now, you should setup 2 "selling positions" (2 shops); each one having its own opened session.

Beste antwoord

The same happens to me ...

Avatar
Annuleer
Beste antwoord

=== modified file 'point_of_sale/point_of_sale.py' --- point_of_sale/point_of_sale.py 2012-12-06 14:56:32 +0000 +++ point_of_sale/point_of_sale.py 2013-01-17 12:08:40 +0000 @@ -290,7 +290,7 @@

  _constraints = [
         (_check_unicity, "You cannot create two active sessions with the same responsible!", ['user_id', 'state']),
-        (_check_pos_config, "You cannot create two active sessions related to the same point of sale!", ['config_id']),
+        (_check_pos_config, "You cannot create two active sessions related to the same point of sale! Use not used point of sale", ['config_id']),
     ]

 def create(self, cr, uid, values, context=None):

=== modified file 'point_of_sale/wizard/pos_session_opening.py' --- point_of_sale/wizard/pos_session_opening.py 2012-12-06 14:56:32 +0000 +++ point_of_sale/wizard/pos_session_opening.py 2013-01-17 12:08:40 +0000 @@ -88,6 +88,7 @@

    session_ids = proxy.search(cr, uid, [
             ('state', '!=', 'closed'),
             ('config_id', '=', config_id),
+            ('user_id', '=', uid),
         ], context=context)
         if session_ids:
             session = proxy.browse(cr, uid, session_ids[0], context=context)

apply this patch in POS

also never try to start a new session without closing a previous session. This is a bug in POS that it cannot handle two sessions simultaneously. The above patch does not resolve the bug but prevents the system from breaking at any stage inside POS.

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
jun. 16
9870
0
jan. 25
1457
2
mei 23
2980
2
jul. 22
3415
0
jan. 22
1501