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
- Buchhaltung
- Lager
- PoS
- Project
- MRP
Diese Frage wurde gekennzeichnet
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"
Diskutieren Sie gerne? Treten Sie bei, statt nur zu lesen!
Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!
RegistrierenVerknüpfte Beiträge | Antworten | Ansichten | Aktivität | |
---|---|---|---|---|
|
1
Mai 25
|
1289 | ||
|
1
Dez. 22
|
1109 | ||
|
4
Dez. 18
|
5070 | ||
|
2
Okt. 15
|
13446 | ||
|
0
Juli 15
|
3382 |
Have you found any way around this? I'm hurting to process 1300 deliver orders quickly (incorrect setup on my part)