add : OperationType.xml view and domain

This commit is contained in:
zakaria.hachem
2024-11-05 08:54:23 +01:00
parent 010dbd0b93
commit f1d1684f41
2 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<domain-models xmlns="http://axelor.com/xml/ns/domain-models"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
<module name="qvm" package="com.axelor.apps.qvm.db"/>
<entity name="OperationType">
<string name="name" title="Operation Type :" required="true"/>
<!--<many-to-one name="parent" ref="com.axelor.apps.qvm.db.MachineLocation" title="parent"/>-->
<integer name="stockUnity" selection="operation.parent.location.select" default="0"/>
<integer name="orderByState"/>
<one-to-many name="operationList" ref="com.axelor.apps.qvm.db.Operation" mappedBy="operationType" title="Operations" />
<integer name="typeSelect"/>
</entity>
</domain-models>

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<object-views xmlns="http://axelor.com/xml/ns/object-views"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
<form name="operation-type-form" title="Operations Type" model="com.axelor.apps.qvm.db.OperationType" width="large">
<panel name="Overview" colspan="12">
<field name="name"/>
<field name="stockUnity"/>
</panel>
<panel-dashlet name="operationList" title="Operations" action="operation.action.view.related" colSpan="12"/>
</form>
<grid name="operation-type-grid" title="Operations types" model="com.axelor.apps.qvm.db.OperationType" edit-icon="true">
<field name="name"/>
<field name="stockUnity"/>
</grid>
<kanban name="operation-type-kanban-view" title="Operations Type" model="com.axelor.apps.qvm.db.OperationType" columnBy="stockUnity" sequenceBy="stockUnity" draggable="false" limit="30">
<field name="name"/>
<field name="stockUnity"/>
<template><![CDATA[
<h4>{{name}}</h4>]]>
</template>
</kanban>
<action-view name="operation.type.action.view" model="com.axelor.apps.qvm.db.OperationType" title="Operations Type">
<view name="operation-type-grid" type="grid"/>
<view name="operation-type-kanban-view" type="kanban"/>
<view name="operation-type-form" type="form"/>
</action-view>
</object-views>