This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/service_memo/service_memo_construct.xml
2011-05-03 09:49:01 +10:00

101 lines
2.2 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<construct>
<!-- define the module name -->
<module>service_memo</module>
<!-- define the module table name -->
<table>service_memo</table>
<!-- define the module dependancy(s) -->
<dependancy>service</dependancy>
<!-- define the DB cache in seconds -->
<cache>0</cache>
<!-- define the default order_by field for SQL queries -->
<order_by>date_orig</order_by>
<!-- define the methods -->
<limit>25</limit>
<!-- define database indexes -->
<index>
<service>service_id</service>
<memo>memo</memo>
</index>
<!-- Page Display Titles -->
<title>
<add>Add Service Memo</add>
<view>Service Memo</view>
</title>
<!-- define the fields -->
<field>
<id>
<type>I8</type>
</id>
<site_id>
<type>I4</type>
</site_id>
<date_orig>
<display>Date</display>
<type>I8</type>
<validate>date-time</validate>
<convert>date-now</convert>
</date_orig>
<staff_id>
<display>Staff</display>
<type>I8</type>
<asso_table>account</asso_table>
<asso_field>username</asso_field>
</staff_id>
<service_id>
<display>Service</display>
<type>I8</type>
</service_id>
<type>
<display>Type</display>
<type>C(32)</type>
<validate>any</validate>
</type>
<memo>
<display>Memo</display>
<type>C(255)</type>
<validate>any</validate>
</memo>
<misc>
<type>C(32)</type>
</misc>
</field>
<!-- define all the methods for this class, and the fields they have access to, if applicable. -->
<method>
<add>date_orig,staff_id,service_id,type,memo</add>
<update>id,site_id,date_orig,staff_id,service_id,type,memo</update>
<delete>id,site_id,date_orig,staff_id,service_id,type,memo</delete>
<view>id,site_id,date_orig,staff_id,service_id,type,memo</view>
<search>id,site_id,date_orig,staff_id,service_id,type,memo</search>
</method>
<!-- define the method triggers -->
<trigger>0</trigger>
<!-- Template Helpers -->
<tpl>
<search_show>
<checkbox>
<field>id</field>
<width>25px</width>
</checkbox>
<date_orig>
<field>date_orig</field>
</date_orig>
<staff_id>
<field>staff_id</field>
</staff_id>
<type>
<field>type</field>
</type>
<memo>
<field>memo</field>
</memo>
</search_show>
</tpl>
</construct>