From: Anneli <an...@us...> - 2005-01-17 10:23:38
|
Update of /cvsroot/redpos/RedPOS/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17783/conf Modified Files: properties.xml Log Message: New type of payment SimpleCurrencyExchange, enter rate on one currency in properties.xml, when using this payment type the amount will be shown in the currency entered, this is just for the gui part, no info about rate or will be saved in the database. Index: properties.xml =================================================================== RCS file: /cvsroot/redpos/RedPOS/conf/properties.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** properties.xml 13 Jan 2005 14:51:22 -0000 1.8 --- properties.xml 17 Jan 2005 10:23:23 -0000 1.9 *************** *** 4,7 **** --- 4,12 ---- <redpos-properties> + <!-- Exchange properties --> + <property-category name="exchange"> + <property name="CurrencyRate" type="java.lang.Double">1.116</property> + </property-category> + <!-- General properties --> <property-category name="general"> *************** *** 170,173 **** --- 175,188 ---- <property name="Pay5LimitRepay" type="java.lang.Double">10000</property> + <property name="SimpleCurrencyExchangeIndex" type="java.lang.Integer">12</property> + <property name="SimpleCurrencyExchangeCode" type="java.lang.String">SICUEX</property> + <property name="SimpleCurrencyExchangeChangeAllowed" type="java.lang.Boolean">true</property> + <property name="SimpleCurrencyExchangeRepayAllowed" type="java.lang.Boolean">true</property> + <property name="SimpleCurrencyExchangeCancelAllowed" type="java.lang.Boolean">true</property> + <property name="SimpleCurrencyExchangeUpdateAllowed" type="java.lang.Boolean">true</property> + <property name="SimpleCurrencyExchangeLimit" type="java.lang.Double">10000</property> + <property name="SimpleCurrencyExchangeLimitChange" type="java.lang.Double">10000</property> + <property name="SimpleCurrencyExchangeLimitRepay" type="java.lang.Double">10000</property> + </property-category> |