From: Kilian Saffran Date: Thu, 7 Mar 2019 07:18:47 +0000 (+0100) Subject: jsdump removed X-Git-Tag: 3.28.1 X-Git-Url: http://cloud.dks.lu/git/?a=commitdiff_plain;h=cea2963f68e80dc40150481ad6429407b8ca943b;p=creorga.git jsdump removed --- diff --git a/app_v3/chrome/content/js/system.js b/app_v3/chrome/content/js/system.js index 17b5e32..207051f 100644 --- a/app_v3/chrome/content/js/system.js +++ b/app_v3/chrome/content/js/system.js @@ -1,10 +1,10 @@ //Source-code licensed under EUPL v1.2 ( Copyright 2019 By DKS s.à r.l. - Kilian Saffran - Luxembourg ) - function jsdump(str) { - Components.classes['@mozilla.org/consoleservice;1'] - .getService(Components.interfaces.nsIConsoleService) - .logStringMessage(str); - } +// function jsdump(str) { +// Components.classes['@mozilla.org/consoleservice;1'] +// .getService(Components.interfaces.nsIConsoleService) +// .logStringMessage(str); +// } Components.utils["import"]("resource://gre/modules/FileUtils.jsm"); Components.utils["import"]("resource://gre/modules/Services.jsm"); diff --git a/app_v3/chrome/content/modules/accounting/js/accounting.js b/app_v3/chrome/content/modules/accounting/js/accounting.js index b96bdf0..7114f27 100644 --- a/app_v3/chrome/content/modules/accounting/js/accounting.js +++ b/app_v3/chrome/content/modules/accounting/js/accounting.js @@ -190,7 +190,7 @@ function dlg_accounting(myuuid){ //alert("TEST"); var acc1sql = "SELECT acc.uuid,acc.accmonth,ch.uuid as childuuid,COALESCE( ch.prename, '' ) || ' ' || COALESCE( ch.surname, '' ) || '(' || ch.checkservicenumber || ')' AS childname,case when acc.invoicedate is not null then strftime('%d.%m.%Y',acc.invoicedate) else null end as invoicedate, case when acc.payeddate is not null then strftime('%d.%m.%Y',acc.payeddate) else null end as payeddate, payedamount, invoiceamount,benefitamount, case when acc.reminderdate1 is not null then strftime('%d.%m.%Y',acc.reminderdate1) else null end as reminderdate1, case when acc.reminderdate2 is not null then strftime('%d.%m.%Y',acc.reminderdate2) else null end as reminderdate2, case when acc.reminderdate3 is not null then strftime('%d.%m.%Y',acc.reminderdate3) else null end as reminderdate3, case when acc.invoicefile is not null and acc.invoicefile != '' then '"+ importpath.path + system.sep() +"' || acc.invoicefile else null end as invoicefile,'upd' as action FROM accounting acc join childs ch on (ch.uuid=acc.childuuid) where acc.uuid = '"+ myuuid+"';"; - jsdump("ACC1SQL" + acc1sql); + //jsdump("ACC1SQL" + acc1sql); var acc1data = appdb.dbquery(acc1sql); if (!acc1data.sqldata) {