Is it possible to view the delivery status of Sales Orders and to see the carrier tracking reference for the Delivery Order on the actual Sales Order?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
Yes.
To show a progress bar of the shipping status (since orders can be split if a backorder is required), you would inherit and override the sale.order.tree view and add:
<field name="picked_rate" widget="progressbar" string="Shipped"/>
To show information about deliveries on the Sales Order, you would inherit and override the sale.order.form view and add (as the last page in the notebook):
<page string="Deliveries" groups="base.group_user" attrs="{'invisible': [('state','in',('draft','sent'))]}">
<field name="picking_ids">
<tree string="Deliveries">
<field name="name"/>
<field name="state"/>
<field name="min_date"/>
<field name="date_done"/>
<field name="carrier_tracking_ref"/>
</tree>
</field>
</page>
(Note that you can already click View Delivery Order from the Sales Order to see the same information)
I had a crack at doing this on v8 on runbot and couldn't get it to work - it would be good to get confirmation that your mod still works on v8 and it is just my lack of capability that is causing this to not work.
the field picked_rate no longer exists in v8...
the field picked_rate no longer exists in v8...
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
0
مارس 15
|
2992 | ||
|
1
مارس 15
|
8830 | ||
|
1
مارس 15
|
9169 | ||
|
1
مارس 15
|
4299 | ||
|
1
مارس 15
|
3614 |