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

In the automated action we can send emails at the time of record creation or updation. So, I want sales order report generated when create sales order or on update.

I tried with automated action and server action.

I tried with this configuration in OpenERP.

Automated Action values:

Rule Name : Sale Order Automated action
Related Document Model : sale.order
Active : True
Sequence : 1
Before Update Filter : Null
After Update Filter :  Null
Trigger Date : Null
Set Responsible : Null
Add Followers : Null
Server actions to run : Sales Order Report  Server Action

Server Action Values:

Action Name : Sales Order Report  Server Action
object : sale.order
action type : Client Action
condition : True
Client Action : Quotation / Order (Action usage in this action is ir.actions.report.xml)
Sequence : 1
type : ir.actions.server

I tried in different ways but can't reach to the solution. Email functionality is working properly but why it does not generate report? please, point out me a way for report generation. If any one have tried it, help me please. I also want to open wizard at the time of record creation.

Thanks.

아바타
취소
작성자

Hi Ben, I've changed Server Action with Action Type : Python Code Python Code: datas = {'model': 'sale.order','ids': [object.id],'form': self.read(cr, uid, [object.id],[],context)} action = {'type': 'ir.actions.report.xml', 'report_name': 'sale.order', 'datas': datas} type:ir.actions.server and all other values are remains as it is. Then after I am not able to generate report with automated action. please, point out me a little more.

베스트 답변

automatic action - sale.order - email

아바타
취소
베스트 답변

My solution would be something like

  • add action server with action type = Python Code
  • the python code would be something like calling report service to make report. Add the created report as datas for new (or update) ir.attachment record

 

아바타
취소
관련 게시물 답글 화면 활동
0
10월 24
1561
2
8월 24
1352
0
8월 24
1406
0
1월 25
1196
0
1월 24
1941