Initial import from Docker volume
This commit is contained in:
14
modules/sale_promotion_coupon/view/coupon_form.xml
Executable file
14
modules/sale_promotion_coupon/view/coupon_form.xml
Executable file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="promotion"/>
|
||||
<field name="promotion"/>
|
||||
<label name="number_of_use"/>
|
||||
<field name="number_of_use"/>
|
||||
<label name="per_party"/>
|
||||
<field name="per_party"/>
|
||||
<field name="numbers" colspan="4"/>
|
||||
</form>
|
||||
9
modules/sale_promotion_coupon/view/coupon_list.xml
Executable file
9
modules/sale_promotion_coupon/view/coupon_list.xml
Executable file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="promotion" expand="1"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="number_of_use"/>
|
||||
<field name="per_party"/>
|
||||
</tree>
|
||||
11
modules/sale_promotion_coupon/view/coupon_number_form.xml
Executable file
11
modules/sale_promotion_coupon/view/coupon_number_form.xml
Executable file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="coupon"/>
|
||||
<field name="coupon" colspan="3"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
</form>
|
||||
7
modules/sale_promotion_coupon/view/coupon_number_list.xml
Executable file
7
modules/sale_promotion_coupon/view/coupon_number_list.xml
Executable file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="coupon" expand="1"/>
|
||||
<field name="number" expand="1"/>
|
||||
</tree>
|
||||
8
modules/sale_promotion_coupon/view/promotion_form.xml
Executable file
8
modules/sale_promotion_coupon/view/promotion_form.xml
Executable file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='products']" position="after">
|
||||
<field name="coupons"/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/sale_promotion_coupon/view/sale_form.xml
Executable file
10
modules/sale_promotion_coupon/view/sale_form.xml
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//notebook/page[@id='sale']" position="after">
|
||||
<page name="coupons">
|
||||
<field name="coupons" colspan="4"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user