Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
6413 Widoki

Here is the setting view on Odoo13:


And I can't found how to enable/disable the cash control on Odoo15:


In Odoo 15 Point of Sale I can't find on POS Settings to disable/enable options for cash control.


I want to disable the cash control on Point of Sale Odoo15, how to do that?

Thanks,

Tri Nanda

Awatar
Odrzuć

I agree with you 100% .. in Odoo 15 they should add a configuration for this.

Najlepsza odpowiedź

Hi Nanda, 


I believe you will find your answer in this tutorial : https://www.youtube.com/watch?v=hwDhO6cqCjc

pos cash control in odoo15 is different from other versions. 
Please note that you need to have Cash as payment method ( payment having Cash=True, you can check that in group by ) in order to use cash control .


hope this helps you. 
Regards.

Awatar
Odrzuć
Autor

Can I disable the cash control even if I have Cash as payment method?

in V15, I don't think so. Having Cash as payment means that there must be a cash control processs to be done.

Autor

In some business: especially for my client: they combine cashier's job with sales:
Cashier sell products on POS, but their also selling products on Sales module wich is using sales.order.

One person using same cash drawer, so it will be hard if to manage if we can't disable POS cash control, except if the POS cash control also take sales amount from sale.order.

Hope some people give me insight how to solve this.

I suggest you close this ticket as it answers your question and open a new one and ask about the best functional process to implement.
Thanks in advance.

I think as long as a payment is done using Cash, there must be cash control even if it's a sale order.. Because cachier puts literally money in cash register.

Najlepsza odpowiedź

I will recommend you check out https://apps.odoo.com/apps/modules/15.0/limit_cash_control/ if it addresses your need.

If it doesn't, kindly explain what you actually want to disable.

Awatar
Odrzuć
Najlepsza odpowiedź
class PosConfig(models.Model):
_inherit = 'pos.config'



cash_control = fields.Boolean(
string='',
compute='_compute_cash_control')

def _compute_cash_control(self):
for rec in self:
rec.cash_control = False


Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
gru 23
3490
0
paź 22
2009
1
lip 22
3157
1
maj 23
2551
0
kwi 22
2509