如何向上移动条款和条件的复选框 [odoo 13]

How to move checkbox of terms and conditions up [odoo 13]

有谁知道如何将条件和位置复选框向上移动?我在 odooenter image description here 中找到了这个复选框的代码并且它有这个参数,但是当我将这个参数的状态更改为“之前”时,没有任何反应 odoo 版本 13.0,电子商务模块

复选框代码

<template id="payment_sale_note" inherit_id="payment" name="Accept Terms &amp; Conditions" customize_show="True" active="True">
    <xpath expr="//div[@id='payment_method'][hasclass('js_payment')]" position="before">
        <div class="custom-control custom-checkbox float-right mt-2 oe_accept_cgv_button">
            <input type="checkbox" id="checkbox_cgv" class="custom-control-input"/>
            <label for="checkbox_cgv" class="custom-control-label">
                I agree to the <a target="_BLANK" href="/shop/terms">terms &amp; conditions</a>
            </label>
        </div>
    </xpath>
</template>

在我的 odoo v13 中,我是这样管理的:

<template id="my_payment_tokens_list" inherit_id="payment.payment_tokens_list" >
   <xpath expr="//form[hasclass('o_payment_form')]/div[1]" position="before">
     <div class="pl-4 mb-3">
       <input type="checkbox" id="checkbox_cgv" class="custom-control-input" required="This field is required"/>
       <label for="checkbox_cgv" class="custom-control-label"> I agree with <a target="_BLANK" href="/shop/terms"><u>General Terms and Conditions of Sale</u></a></label>
    </div>    
   </xpath>
</template>