I would like to process multiple delivery orders at once from the list view: check the availability and deliver them. So far there is no such option in the "More" menu if you select multiple delivery orders in the list view. Can I configure the system to have the options "Check Availability" and "Deliver" for multiple delivery orders at once in the "More" Menu?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
Hi,
select multiple delivery and in a wizard you can confirm your selection or choose operation check the availability or deliver or another actions.
so
add a menu in "More":
<act_window name="Select multiple delivery to deliver"
res_model="multiple_delivery_wizard"
src_model="stock.picking.out"
key2="client_action_multi"
view_mode="form"
target="new"
view_type="form"
id="act_more_select_multiple_delivery" />
in wizard :
class multiple_delivery_wizard(osv.osv_memory):
_name = 'multiple_delivery_wizard'
_description = 'multiple_delivery_wizard '
def default_get(self, cr, uid, fields, context=None):
res = super(multiple_delivery_wizard, self).default_get(cr, uid, fields,
context=context)
delivery_ids = context and context.get('active_ids') or []
# all delivery selected
# your treatment
def view_init(self, cr, uid, fields_list, context=None):
"""
Creates view dynamically and adding fields at runtime.
@param self: The object pointer.
@param cr: A database cursor
@param uid: ID of the user currently logged in
@param context: A standard dictionary
@return: New arch of view with new columns.
"""
# your treatment
def delivery_all_selected(self, cr, uid, ids, context=None):
# your treatment
multiple_delivery_wizard()
Thanks
I'm sorry for my ignorance, but is your example a new module or something i can edit in technical settings? I think I can figure out the window action, but i am lost with the wizard portion. thanks!
Another way to batch processing delivery orders is in "Warehouse/Receive Deliver Products/Deliver Products": select all lines and continue with "More Menu" option "Deliver/Receive Products"
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 5 25
|
1287 | ||
|
1
thg 12 22
|
1109 | ||
|
4
thg 12 18
|
5066 | ||
|
2
thg 10 15
|
13443 | ||
|
0
thg 7 15
|
3382 |
Have you found any way around this? I'm hurting to process 1300 deliver orders quickly (incorrect setup on my part)