first commit

This commit is contained in:
root
2026-03-14 09:42:12 +00:00
commit 0adbd20c2c
10991 changed files with 1646955 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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="/form" position="inside">
<separator string="Product Recommendation Association Rule" id="product_association_rule" colspan="4"/>
<label name="product_association_rule_transactions_up_to"/>
<field name="product_association_rule_transactions_up_to"/>
<label name="product_association_rule_max_length"/>
<field name="product_association_rule_max_length"/>
<label name="product_association_rule_min_support"/>
<field name="product_association_rule_min_support"/>
<label name="product_association_rule_min_confidence"/>
<field name="product_association_rule_min_confidence"/>
</xpath>
</data>

View File

@@ -0,0 +1,21 @@
<?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 col="2">
<group col="2" colspan="2" id="rule">
<field name="antecedents" view_ids="product.product_view_tree_simple"/>
<field name="consequents" view_ids="product.product_view_tree_simple"/>
</group>
<label name="confidence"/>
<field name="confidence"/>
<label name="support"/>
<field name="support"/>
<label name="lift"/>
<field name="lift"/>
<label name="conviction"/>
<field name="conviction"/>
</form>

View 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. -->
<tree>
<field name="antecedent_names" expand="1"/>
<field name="consequent_names" expand="1"/>
<field name="confidence" optional="1"/>
<field name="support" optional="1"/>
<field name="lift" optional="1"/>
<field name="conviction" optional="1"/>
</tree>