Hiiii
how we can add product image as a field on the sales order when we add an item.
Thanks jack
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hiiii
how we can add product image as a field on the sales order when we add an item.
Thanks jack
Just create one related
field in sale.order.line
and display it in Order Line form view.
Try this:
`product_image`: fields.related('product_id', 'image_medium', type='binary', 'Product Image')
Add this field in sale.order
form view in inline form view of sale.order.line
.
As i am Beginner & i have inherited sale.order in new module....so please tell me how to write the related fields in py & xml file in the new module to have a proper output in which when we select a product we get the product image of selected product also there in the new field...
Hi Sudhir, Thanks for the instructions. I'm very new to Odoo v8 and am unaware how to implement what you have instructed. Should I be editing the the QWeb files by adding a field with the code inside the sale order line using the Odoo v8 developer mode, or is there another method that you would suggest? I am looking to get images on order lines in the following types of documents for PDF output: Sales Order, Quotation, Purchase Order, Invoice. I am also looking to include images on sales order/quotation lines for the CMS facing quote builder (ie. where a customer can review the quotation from the frontend). I am having some luck implementing this by borrowing some code from the shopping cart order lines, however I have not made much progress on editing the RML / QWeb reports that allow printing/saving to PDF for invoices, quotations, etc.
Somebody has successfully put pictures in a quotation with this method?
If you are looking to add a product image to a printed report (ie. PDF or HTML) sales order, purchase order, invoice, or any other report with product order lines I believe I have figured out a solution thanks to Fabrice Henrion's post here: https://www.odoo.com/forum/Help-1/question/Is-there-any-way-to-preview-WebKit-report-layout-while-coding-maybe-WYSIWYG-Editor-52307.
Simply follow Fabrice's instructions as follows (preferably use latest master branch version):
If you want to add an image to an order line simply edit the HTML in the HTML editor found in the top navigation menu under Customize >> HTML Editor and find the place in the HTML/QWeb template that you would like to edit. I simply added an extra set of <th></th> tags as follows for a order line header (in the appropriate section of html/qweb that is):
<th class="text-left"><strong>Picture</strong></th>
and then added the following line for the sales order line product picture column:
<td class="text-center">
<span t-field="line.product_id.image_small" t-field-options="{"widget": "image", "class": "img-rounded"}"/>
</td>
The contents of the <span> tag pull the product image into the sales order line in the column that you want and when you save your html your report will display the appropriate product picture in 64px x 64px.
There may be a better way to do this and I welcome any comments on how this process might be improved.
Plouf! too hard and complicated. With my actual invoice software, I can drag n drop 10 pictures in one shot if I want.
@Pascal, This is teaching you how to customise reports in Odoo yourself. If you'd like to see that functionality in a ready-built module feel free to comment below with a list of features you'd like to see as I will be building a community module to help make this easier. What invoicing software are you using?
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
Do you want to get an image on your report, or in the order within openERP?
Hi Patrick, I'm looking to implement images on the sales order, purchase order, quotation, and invoice lines for reports, are you aware of any method to implement this either in the RML files or with a module?