Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
en:modifications:german-dateformat [2014/03/06 14:06]
swarnat [5. /modules/Calendar/RepeatEvents.php]
en:modifications:german-dateformat [2016/02/19 14:30]
swarnat
Line 1: Line 1:
 ====== deutsches Datumsformat ====== ====== deutsches Datumsformat ======
  
 +===== vtigerCRM 6.0 =====
  
-===== vtigerCRM ​6.0 RC =====+**06.03.2014 UPDATE ** - Small missing line modification in last block 
 +**19.02.2016 UPDATE ** - Tested until VtigerCRM ​6.4.0 
 + 
 +**After you have done this modifications,​ you need to clear your Browser cache!**
  
 ==== 1. neuer Eintrag in die '​vtiger_date_format'​ Tabelle mit folgender Query: ==== ==== 1. neuer Eintrag in die '​vtiger_date_format'​ Tabelle mit folgender Query: ====
Line 132: Line 136:
 </​code>​ </​code>​
  
-==== 6. /​modules/​Vtiger/​helpers/​Utils.php ====+==== 6. /​modules/​Vtiger/​helpers/​Util.php ====
  
 Diese Anpassung ist nur dann notwendig, wenn Ihr auch die Ausgaben der Form "Wed, Dec 18, 2013 at 15:50" anpassen möchtet, sodass am Ende "Wed, 18. Dec 2013 at 15:50 Uhr" erscheint. Diese Anpassung ist nur dann notwendig, wenn Ihr auch die Ausgaben der Form "Wed, Dec 18, 2013 at 15:50" anpassen möchtet, sodass am Ende "Wed, 18. Dec 2013 at 15:50 Uhr" erscheint.
Line 193: Line 197:
 </​code>  ​ </​code>  ​
  
-==== 8. /​layouts/​vlayout/​modules/​Vtiger/​resources/​dashboards/​Widgets.js ====+==== 8. /​layouts/​vlayout/​modules/​Vtiger/​resources/​dashboards/​Widget.js ====
  
 === Funktion convertToDateRangePicketFormat === === Funktion convertToDateRangePicketFormat ===
Line 211: Line 215:
 <code js> <code js>
 var splittedDate = dateComponent.split("​-"​);​ var splittedDate = dateComponent.split("​-"​);​
 +var splittedDateFormat = dateFormat.split("​-"​);​
 </​code>​ </​code>​
 Replace with: Replace with:
Line 219: Line 224:
 } }
 var splittedDate = dateComponent.split(dotMode?"​.":"​-"​);​ var splittedDate = dateComponent.split(dotMode?"​.":"​-"​);​
 +var splittedDateFormat = dateFormat.split(dotMode?"​.":"​-"​);​
 </​code>​ </​code>​