openerp - How to add new text box fields on check out web page odoo -
i want add add new text box fields remarks on checkout webpage odoo. how should , want show remarks on payment page also.
thanks
you have inherit website_sale.checkout template.
<template id="checkout_custom" inherit_id="website_sale.checkout"> <xpath expr="//input[@name='city']" position="after"> <input type="remarks" name="remarks" class="form-control"/> </xpath> </template>
Comments
Post a Comment