我想在商店表格中添加一个字段生日日期
主要的xml就是这个
https://jsfiddle.net/NadirB21/ubtvkfc4/
[img] http://img15.hostingpics.net/pics/966482shop.png [/ img]
我添加
<div t-attf-class="form-group #{error.get('birthdate') and 'has-error' or ''} col-lg-6">
<label class="control-label" for="birthdate">Birthdate</label>
<input type="text" name="birthdate" class="form-control" t-att-value="checkout.get('birthdate')"/>
</div>
我添加
t-att-data-shipping_birthdate="shipping.birthdate"
和
<div t-attf-class="form-group #{error.get('shipping_birthdate') and 'has-error' or ''} col-lg-6">
<label class="control-label" for="shipping_birthdate" style="font-weight: normal"> Date De Naissance</label>
<input type="text" name="shipping_birthdate" class="form-control" t-att-value="checkout.get('shipping_birthdate', '')" t-att-readonly=" 'readonly' if shipping_id >= 0 else ''"/>
</div>
我也在模块成员中激活了这个字段
[img] http://img15.hostingpics.net/pics/455128modulenotsave.png [/ img]
当我确认商店时,该字段不会显示在确认表单中,并且不会在模块成员中创建。 为了将此字段保存在模块成员中,我必须添加什么内容?
答案 0 :(得分:0)
我添加图片的目的是解释问题。 模块成员和商店表单之间存在交互问题。