Ciao eLBati,
ho cercato il modulo sale_stock ed ho mi elenca due moduli:
gestione vendite e magazzino (Quotation, Sale Orders, Delivery & invoice Control) che è già installato
Website Sale Stock- Website delivery Informations che non è installato.
Se provo ad aggiornare il primo modulo mi da il seguente errore:
Dettagli dell'Errore:
L'elemento '<xpath expr="//div[@name='total']">' non pu\xf2 esser localizzato nella vista genitore
Error context:
View `report_shop_saleorder_document`
[view_id: 918, xml_id: n/d, model: n/d, parent_id: 615]
None" while parsing None:4, near
<data inherit_id="sale.report_saleorder_document">
<xpath expr="//div[@name='total']" position="after">
<t t-if="doc.payment_acquirer_id.name">
<table class="table table-condensed mt32 mb32">
<thead>
<tr>
<th>Payment Information</th>
<th class="text-right">Total</th>
</tr>
</thead>
<tbody class="sale_tbody">
<tr>
<td>
<strong>Payment Method:</strong> <t t-esc="doc.payment_acquirer_id.name"/><br/>
<strong>Payment Status:</strong>
<t t-if="doc.payment_acquirer_id.auto_confirm == 'none'">
<t t-raw="doc.payment_acquirer_id.pending_msg"/>
</t>
<t t-if="doc.payment_acquirer_id.auto_confirm == 'at_pay_confirm'">
<t t-if="doc.payment_tx_id.state == 'pending'">
<t t-raw="doc.payment_acquirer_id.pending_msg"/>
</t>
<t t-if="doc.payment_tx_id.state == 'done'">
<t t-raw="doc.payment_acquirer_id.done_msg"/>
</t>
<t t-if="doc.payment_tx_id.state == 'cancel'">
<t t-raw="doc.payment_acquirer_id.cancel_msg"/>
</t>
<t t-if="doc.payment_tx_id.state == 'error'">
<t t-raw="doc.payment_acquirer_id.error_msg"/>
</t>
</t>
</td>
<td class="text-right">
<span t-field="doc.amount_total" t-field-options="{"widget": "monetary", "display_currency": "doc.pricelist_id.currency_id"}"/>
</td>
</tr>
</tbody>
</table>
</t>
</xpath>
</data>
Non so se può essere perché ho creato un modulo che eredita da sale.order per riformattare i miei report delle offerte e vendite (quello della fatturazione, quindi account.invoice, non l'ho ancora riformattato)
Può essere per questo motivo che non vedo la possibilità delle due stampe?
Cme posso ovviare?
Grazie