跳至內容
選單
此問題已被標幟
3 回覆
6372 瀏覽次數

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
1536
2
8月 24
1323
0
8月 24
1375
0
1月 25
1165
0
1月 24
1929