Is there any way to use comments on delivery orders like it can be done at quotations and invoices? Thanks in advice.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
Hello
OpenERP version 6.1 ->
go to sale-sale.py->
def _prepare_order_picking(self, cr, uid, order, context=None):
import ipdb;ipdb.set_trace()
pick_name = self.pool.get('ir.sequence').get(cr, uid, 'stock.picking.out')
return {
'name': pick_name,
'origin': order.name,
'date': order.date_order,
'type': 'out',
'state': 'auto',
'move_type': order.picking_policy,
'sale_id': order.id,
'address_id': order.partner_shipping_id.id,
'note': order.note,
'invoice_state': (order.order_policy=='picking' and '2binvoiced') or 'none',
'company_id': order.company_id.id,
}
############## Above code is general format how your data dynamically passes from sale order to your delivery order after confirming sale order. Now you can add your custom field here and your note value will be directly passes to stock.picking(delivery order form)
Example
class sale_order()
columns={'custom_note':field.text(My note)}
def _prepare_order_picking(self, cr, uid, order, context=None):
import ipdb;ipdb.set_trace()
pick_name = self.pool.get('ir.sequence').get(cr, uid, 'stock.picking.out')
return {
'name': pick_name,
'origin': order.name,
'date': order.date_order,
'type': 'out',
'state': 'auto',
'move_type': order.picking_policy,
'sale_id': order.id,
'address_id': order.partner_shipping_id.id,
'note': order.note,
'invoice_state': (order.order_policy=='picking' and '2binvoiced') or 'none',
'company_id': order.company_id.id,
'custom_note_pick':order.custom_note #your comment dynamically passes to delivery order
}
sale_order()
class stock_picking()
columns={'custom_note_pick':field.text(My note)}
stock_picking()
What i want to do, is that the notes I put at quotations, appears also at delivery notes. I dont know how to do what you have explained. Thanks for your answer, I'm sorry for my ignorance.
i have modified my above reply
I am trying to explain you in technical way because when user require any custom stuffs then we need to change the script .
I'm very pleased with you, thank you for take your time answering me with this great example. I'm using V7 but i will try to follow your answer.
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 5 25
|
1259 | ||
|
1
thg 12 22
|
1109 | ||
|
4
thg 12 18
|
5027 | ||
|
2
thg 10 15
|
13414 | ||
|
0
thg 7 15
|
3366 |