Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
7 ตอบกลับ
6138 มุมมอง

We imported many orders from our old system (thousands) and they are marked as needing action. This means we don't get any useful information because it is overrun with useless data.


How can I clear this queue?


The only way I have found is to manually view each order, which is impossible for 2,000+ orders for each user.


Screenshot: http://prntscr.com/9qhnb8

อวตาร
ละทิ้ง

Hello Are they imported from Magento?

ผู้เขียน

Yes, imported from Magento 1.9

คำตอบที่ดีที่สุด

If you want it to be done with a SQL request:

```
UPDATE mail_notification SET is_read = 't' where partner_id in (select partner_id from res_users WHERE login in ('admin', 'demo')) and is_read = 'f';
```

Where you replace `('admin', 'demo')` by the list of logins for which you want the notifications to be read.


If you want it to be done from a server action, using the ORM:

```
logins = ['admin', 'demo']
partner_ids = [user['partner_id'][0] for user in pool['res.users'].search_read(cr, uid, [('login', 'in', logins)], ['partner_id'], context=context)]
notifications_ids = pool['mail.notification'].search(cr, uid, [('partner_id', 'in', partner_ids), ('is_read', '=', False)], context=context)
pool['mail.notification'].write(cr, uid, notification_ids, {'is_read': True}, context=context)
```

Where you replace ['admin', 'demo'] by the list of logins for who you want the notifications to be read.

อวตาร
ละทิ้ง
ผู้เขียน

Yep, this did it! I was able to simplify your SQL slightly to just do all users at once: UPDATE mail_notification SET is_read = 't' WHERE is_read = 'f';

คำตอบที่ดีที่สุด

Hello,

You can select all records from tree view and after that go to More ==> you will find Review Checkpoint 


This option will be available if You are using Default Connector available of OCA 

Thanks

อวตาร
ละทิ้ง
ผู้เขียน

I don't think we are using the OCA connector. The only options under More are Export or Make Invoices. Is there a way I can do this programmatically from the command line?

It is Possible but for that you need to Create Function For that you can call method of that button (Review) for all available Pending Orders if you need further help so give Code so that i can customize that code Thanks

ผู้เขียน

I'm not sure how to call the method as you describe. Do you have code in mind that can be used?

Related Posts ตอบกลับ มุมมอง กิจกรรม
21
ก.ค. 17
14760
Need Action Mechanism แก้ไขแล้ว
2
มี.ค. 15
9564
What is needaction_menu_ref? แก้ไขแล้ว
1
ต.ค. 17
4356
0
ต.ค. 17
3199
Needaction notification number แก้ไขแล้ว
1
ก.ย. 17
3960