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

In Odoo 10, is it possible to define a report (or a filter) to list the purchase orders marked as confirmed but not sent by email to supplier?
i.e., how can I detect if in a purchase order the action "sent PO by email" was completed or not.

Thanks,

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

In odoo v10, you can track your email status in the following settings. first you have to activate the developer mode.then go through the following menu.there you can see your mails.

Settings->Technical->Email->Emails

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

If you check the purchase.py, in the Purchase module, you can see the field:

state = fields.Selection([
('draft', 'RFQ'),
('sent', 'RFQ Sent'),
('to approve', 'To Approve'),
('purchase', 'Purchase Order'),
('done', 'Locked'),
('cancel', 'Cancelled')

Than, you can filter yours PO with state='sent' to find or list all PO just sent by mail.
Now, If this state list not enough, you can extend this list by adding a new state to this list.



อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
ก.ค. 19
4593
0
ก.ย. 24
1484
0
ส.ค. 22
2379
1
ก.ค. 22
20072
0
เม.ย. 22
3050