Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
13 Odpovědi
17835 Zobrazení

Hello, In sale.order.line I have a set a warning message. It pop-ups when the stock level is less than the requested quantity of product in the sale order. The message works perfectly. But the problem is even if the user is warnned that there is not enough stock the order can be confirmed. This should not happen.the order must not get confirmed. How can I do this? Someone please help. this is my warning message code: It is written in def product_id_change

if (qty > product_obj.available_qty):
    warn_msg = _('You requested %.2f.The available stock is %.2f !') %(qty,product_obj.available_qty)
    warning_msgs += _("Not enough stock ! : ") + warn_msg +"\n\n"
Avatar
Zrušit
Nejlepší odpověď

If you really want to stop the flow, you have to override product_id_change and write osv.except_osv instead of warning.

For example:

raise osv.except_osv(_('Error!'),_("Your Warning/Error Message."))

It will stop the execution and won't allow to proceed further until you solve it.

Avatar
Zrušit
Autor

i did this but the result was the exception raised succesfully but the products description field went blank. and when I filled the description the everything worked normally. the order got confirmed even if there is no stock

It is because onchange is called when you change either product or quantity. But you are changing description only then onchange won't work and exception won't raise.

Autor

so wat should i do now? Is there any way?

You can make product_id mandatory.

Autor

is there any way i can do it on the confirm button defenition?

Yes, you can check is there product_id or not, if not then you can raise exception "Please Select Product".

Autor Nejlepší odpověď

Just add

def action_wait(self, cr, uid, ids, context=None):
context = context or {}
for order in self.browse(cr, uid, ids):
    if not order.order_line:
        raise osv.except_osv(_('Error!'),_('You cannot confirm a sales order which has no line.'))
    # Raising exception to inform the user about the stock level before confirming the sale order
    for product in order.order_line:
        if (product.product_uom_qty > product.product_id.available_qty):
            raise osv.except_osv(_('Not enough stock !'), _('You requested %.2f.The available stock is %s !') %(product.product_uom_qty, product.product_id.available_qty))

in sale.py. The def action_wait is already defined. just add the code to into it. My problem got solved.

Avatar
Zrušit

You should create your custom module Instead of changing core modules.

Autor

Yeah i have inherited sale.order and sale.order.line to do this

where did you get the available_qty?? because i got the same problem..

Nejlepší odpověď

There is a module called warning. Please check it

Avatar
Zrušit
Nejlepší odpověď

Warning messages can be displayed for objects like sale order, purchase order, picking and invoice. The message is triggered by the form's onchange event.

http://1tour.vn

http://1tour.vn/khach-san/

http://1tour.vn/tour/

http://tainghebeats.vn

http://thuocla-dientu.com

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
dub 23
13204
0
pro 21
2427
0
bře 15
3566
1
led 25
3287
2
srp 24
5787