콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
9928 화면

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?

아바타
취소

Have you found any way around this? I'm hurting to process 1300 deliver orders quickly (incorrect setup on my part)

베스트 답변

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"

아바타
취소
관련 게시물 답글 화면 활동
1
5월 25
1309
1
12월 22
1109
4
12월 18
5095
2
10월 15
13462
0
7월 15
3397