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

Just import bulk of sales orders, but realized the Confirm Action is not available in the Action menu. Is there another way to confirm the order list in bulk?

아바타
취소
작성자 베스트 답변

Hello Nikhil

Thanks for the response. I had added the code, but it still isn't available in the Actions drop down menu.

Is there further configuration to be done?


아바타
취소

can you check latest answer

click on Create Contextual Action button on server action you make

베스트 답변

Hi Dwalo Ariaro,

Go to Setting -> Enable developer mode -> Technical -> Server Actions

Now here you can create action for bulk order to confirm based on code execute.

check below image.

Create Contextual Action button click after see.

After save this action show in your tree view of (sale order list) you can select quotations and convert into confirm state.

Thanks.


아바타
취소


for record in records:
if record.state == 'draft':
record.action_confirm()
code section add above three line.