Files
test/stock_barcode/static/src/widgets/set_reserved_qty_button.xml
qihao.gong@jikimo.com 3c89404543 质量模块和库存扫码
2023-07-24 11:42:15 +08:00

15 lines
585 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<button t-name="stock_barcode.SetReservedQuantityButtonTemplate" owl="1"
class="o_button_qty_done d-flex btn"
t-attf-class="{{props.value ? 'btn-primary' : 'btn-secondary'}}"
t-on-click="_setQuantity" t-att-disabled="!props.value">
<t t-if="props.value">
/ <span name="product_uom_qty" class="ms-1" t-out="props.value"/>
</t>
<span t-if="displayUOM" name="product_uom_id" class="text-capitalize ms-1" t-out="uom.name"/>
</button>
</templates>