From chazarra.clement at gmail.com Fri Dec 14 04:59:32 2007 From: chazarra.clement at gmail.com (clement chazarra) Date: Fri, 14 Dec 2007 12:59:32 +0000 Subject: [Vtigercrm-developers] Number of tables Message-ID: Hello everybody, I am trying to get 5.0.4 on my centos server, but had some issues about the max_execution_time.. I 'd like to know if I got the good number of tables to verify if everything has gone well(the migration screen stay on "Please wait"). How many tables should I get after miration from 4.2.3? Regards, Clem -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071214/7d548143/attachment.htm From denis0712 at mail.ru Tue Dec 18 02:08:03 2007 From: denis0712 at mail.ru (????? ???????) Date: Tue, 18 Dec 2007 12:08:03 +0200 Subject: [Vtigercrm-developers] Subscribe Message-ID: Dear Sirs, Probably this mailing list is not the exact place, but can I get the access to the vtiger track system to submit some patches? Best regards, Denys Potapov. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071218/5812cc78/attachment.htm From prasad at vtiger.com Tue Dec 18 02:44:24 2007 From: prasad at vtiger.com (Prasad) Date: Tue, 18 Dec 2007 16:14:24 +0530 Subject: [Vtigercrm-developers] Subscribe In-Reply-To: References: Message-ID: <39d18b250712180244w2bb2d229w68a0dbf437c757be@mail.gmail.com> Hi Denis, If you need access to vtiger bug tracker, send mail to prasad at vtiger.com[prasad at vtiger dot com] Regards, Prasad On 12/18/07, ????? ??????? wrote: > > Dear Sirs, > > > > > > > > > > > > Probably this mailing list is not the exact place, but can I get the > access to the vtiger track system to submit some patches? > > > > > > > > > > > > Best regards, > > Denys Potapov. > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071218/01c676b5/attachment-0001.htm From brian at pr2k.com Tue Dec 18 12:27:32 2007 From: brian at pr2k.com (Brian Laughlin) Date: Tue, 18 Dec 2007 12:27:32 -0800 Subject: [Vtigercrm-developers] Make all fields sortby Message-ID: simple fix to make every column sort able in every listview. /include/utils/ListViewUtils.php --> Makes every column sortable in every list view Line 40 - added // cw make all fields sortable on every list view include_once('cw_utility.php'); $focus->sortby_fields = cwSortFields(); Function contained in cw_utility.php could be added inline - in which case just change the include to require_once('include/database/PearDatabase.php'); function cwSortFields() { $sortby_fields = Array(); $query_fields = 'SELECT DISTINCT columnname FROM vtiger_field ORDER BY columnname'; $result_fields = mysql_query($query_fields); $fieldcnt = 0; while($row_fields = mysql_fetch_array($result_fields)) { $sortby_fields[$fieldcnt] = $row_fields["columnname"]; $fieldcnt = $fieldcnt + 1; } return $sortby_fields; } // function end -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071218/2dcf263a/attachment.htm From mickie at vtiger.com Wed Dec 19 08:41:12 2007 From: mickie at vtiger.com (Mickie M) Date: Wed, 19 Dec 2007 22:11:12 +0530 Subject: [Vtigercrm-developers] Number of tables In-Reply-To: References: Message-ID: <7a45853c0712190841v72b58746lc4dc78dd8d5f5ab7@mail.gmail.com> Dear Clement, In a fresh 5.0.4 installation there will be 311 tables where as 60+ tables are seqence tables. But in the migrated database there may not be that much tables. So by executing the query show tables like '%_seq'; you can find out how many sequence tables are available in both databases. Also we can find out how many tables are missing (by executing the query show tables;) where as mostly sequence tables will be lesser in the migrated database. By looking into the logs/vtigercrm.log or logs/migration.log we can find out where the migration has been stopped due to time out. Also you can find out the queries in the files which are available under modules/Migration/DBChanges directory. Kindly get back to us for further informations. Thanks & Regards Mickie On 12/14/07, clement chazarra wrote: > > Hello everybody, > > I am trying to get 5.0.4 on my centos server, but had some issues about > the max_execution_time.. I 'd like to know if I got the good number of > tables to verify if everything has gone well(the migration screen stay on > "Please wait"). > How many tables should I get after miration from 4.2.3? > > > Regards, > Clem > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071219/2579b4b0/attachment.htm From greg at ct-net.org Thu Dec 20 06:55:31 2007 From: greg at ct-net.org (greg@ct-net.org) Date: Thu, 20 Dec 2007 16:55:31 +0200 (SAST) Subject: [Vtigercrm-developers] vendor import Message-ID: <56853.196.209.76.237.1198162531.squirrel@www.ct-net.org> Hi The import / export buttons are greyed out on the vendor window , how do we import large numbers of vendors , at the moment i'm playing with a manual import ... Using vitiger 5.0.3 windows install .. Thanks Greg From prasad at vtiger.com Thu Dec 20 07:47:19 2007 From: prasad at vtiger.com (Prasad) Date: Thu, 20 Dec 2007 21:17:19 +0530 Subject: [Vtigercrm-developers] vendor import In-Reply-To: <56853.196.209.76.237.1198162531.squirrel@www.ct-net.org> References: <56853.196.209.76.237.1198162531.squirrel@www.ct-net.org> Message-ID: <39d18b250712200747m667c64d0qd0617ae7c3c89660@mail.gmail.com> Hi Greg, Vendor import/export feature is not available on vtiger 5.0.3 This feature will be available in vtiger 5.0.4 Sorry for the inconvenience. Regards, Prasad vtiger Team On 12/20/07, greg at ct-net.org wrote: > > Hi > The import / export buttons are greyed out on the vendor window , how do > we import large numbers of vendors , at the moment i'm playing with a > manual import ... > > Using vitiger 5.0.3 windows install .. > > Thanks > Greg > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071220/5cf44350/attachment.htm From joe at tsolucio.com Thu Dec 20 08:08:33 2007 From: joe at tsolucio.com (Joe Bordes) Date: Thu, 20 Dec 2007 17:08:33 +0100 Subject: [Vtigercrm-developers] vendor import In-Reply-To: <56853.196.209.76.237.1198162531.squirrel@www.ct-net.org> References: <56853.196.209.76.237.1198162531.squirrel@www.ct-net.org> Message-ID: <1198166913.18191.69.camel@joesunix.int> Hi Greg, Can't be done on 5.0.3, no code behind the buttons. You will have to wait for 5.0.4 which does have this feature. Joe TSolucio El jue, 20-12-2007 a las 16:55 +0200, greg at ct-net.org escribi?: > Hi > The import / export buttons are greyed out on the vendor window , how do > we import large numbers of vendors , at the moment i'm playing with a > manual import ... > > Using vitiger 5.0.3 windows install .. > > Thanks > Greg > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From greg at ct-net.org Thu Dec 20 13:26:56 2007 From: greg at ct-net.org (Gregory Machin) Date: Thu, 20 Dec 2007 23:26:56 +0200 Subject: [Vtigercrm-developers] vendor import Message-ID: <200712202130.lBKLUcnB002893@vtigerforge.com> Thanks for the prompt feed back ill follow the progress of 504 . Is it in the current release candidate ? Merry xmas to all. -----Original Message----- From: Prasad Sent: 20 December 2007 05:47 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] vendor import Hi Greg, Vendor import/export feature is not available on vtiger 5.0.3 This feature will be available in vtiger 5.0.4 Sorry for the inconvenience. Regards, Prasad vtiger Team On 12/20/07, greg at ct-net.org wrote: Hi The import / export buttons are greyed out on the vendor window , how do we import large numbers of vendors , at the moment i'm playing with a manual import ... Using vitiger 5.0.3 windows install .. Thanks Greg _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071220/9a48e8e8/attachment.htm From greg at ct-net.org Thu Dec 20 13:27:25 2007 From: greg at ct-net.org (Gregory Machin) Date: Thu, 20 Dec 2007 23:27:25 +0200 Subject: [Vtigercrm-developers] vendor import Message-ID: <200712202131.lBKLV1hS002912@vtigerforge.com> Thanks for the feed back will follow the progress on 504. Merry xmas -----Original Message----- From: Joe Bordes Sent: 20 December 2007 06:08 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] vendor import Hi Greg, Can't be done on 5.0.3, no code behind the buttons. You will have to wait for 5.0.4 which does have this feature. Joe TSolucio El jue, 20-12-2007 a las 16:55 +0200, greg at ct-net.org escribi?: > Hi > The import / export buttons are greyed out on the vendor window , how do > we import large numbers of vendors , at the moment i'm playing with a > manual import ... > > Using vitiger 5.0.3 windows install .. > > Thanks > Greg > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com From greg at ct-net.org Fri Dec 21 04:22:38 2007 From: greg at ct-net.org (greg@ct-net.org) Date: Fri, 21 Dec 2007 14:22:38 +0200 (SAST) Subject: [Vtigercrm-developers] schedualed tasks not running / properly Message-ID: <60539.196.209.76.237.1198239758.squirrel@www.ct-net.org> Hi I'm using xammp and vtiger5.0.4 on windows 2000. I can't seem to get the schedualed tasks to run correctly as per http://wiki.vtiger.com/index.php/Installation_How_To%27s I have edited the .bat files for my environment xampp. SenderReminder.bat C:\xampp\php\php.exe C:\xampp\htdocs\vtigercrm\SendReminder.php intimateTaskStatus.bat C:\xampp\php\php.exe C:\xampp\htdocs\vtigercrm\cron\intimateTaskStatus.php When I run SenderReminder.bat i get the following " C:\xampp\htdocs\vtigercrm\modules\Calendar>Sendreminder.bat C:\xampp\htdocs\vtigercrm\modules\Calendar>C:\xampp\php\php.exe C:\xampp\htdocs\ vtigercrm\SendReminder.php Warning: require_once(include/database/PearDatabase.php): failed to open stream: No such file or directory in C:\xampp\htdocs\vtigercrm\include\utils\utils.php on line 34 Fatal error: require_once(): Failed opening required 'include/database/PearDatab ase.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\vtigercrm\incl ude\utils\utils.php on line 34 C:\xampp\htdocs\vtigercrm\modules\Calendar>pause Press any key to continue . . . " what have i missed. I also noticed that the stock notifier is not sending an email to warning of low stock items .. ie below the reorder level, I have enabled this under settings .. what else would i need for this to work . From arodes at onweald.com Sat Dec 22 10:19:44 2007 From: arodes at onweald.com (Andrew Rodes) Date: Sat, 22 Dec 2007 12:19:44 -0600 Subject: [Vtigercrm-developers] I must be missing something ... Message-ID: <001701c844c7$3a078090$ae00a8c0@ANDYSONY> Ok, so I don't remember this being broken, and I have scoured the forums to no avail. I am having a problem importing custom fields into accounts. I found the function where the problem is occurring, but its so blatent, I cant imagine I am correct. Basically, in CustomFieldUtil.php there is a function which is called during the import. The function is as follows: function getCustomFieldArray($module) { global $log; $log->debug("Entering getCustomFieldArray(".$module.") method ..."); global $adb; $custquery = "select * from vtiger_field where tablename='".$module."'"; $custresult = $adb->query($custquery); $custFldArray = Array(); $noofrows = $adb->num_rows($custresult); for($i=0; $i<$noofrows; $i++) { $colName=$adb->query_result($custresult,$i,"column_name"); $custFldArray[$colName] = $i; } $log->debug("Exiting getCustomFieldArray method ..."); return $custFldArray; } However, on the line: $custquery = "select * from vtiger_field where tablename='".$module."'"; the variable $module, always comes in as the expected "Accounts" However, in the vtiger_field table the values stored in the tablename column are all as expected such as: vtiger_account etc So this query returns NO custom fields for the module, and the import fails.(actually it returns success, but the record doesn't show up in the ui since no custom field entries were made for it) ANY IDEAS? If not .. I will try to look for an elegant fix and share it (not sure where to get the table name for the given module .. sure its somewhere) Thanks, Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071222/fe37847a/attachment.htm From joe at tsolucio.com Sat Dec 22 14:31:21 2007 From: joe at tsolucio.com (Joe Bordes) Date: Sat, 22 Dec 2007 23:31:21 +0100 Subject: [Vtigercrm-developers] I must be missing something ... In-Reply-To: <001701c844c7$3a078090$ae00a8c0@ANDYSONY> References: <001701c844c7$3a078090$ae00a8c0@ANDYSONY> Message-ID: <476D9039.1010403@tsolucio.com> Hi, I haven't ran into this problem but it does look rather clear from your exposition. Get the table name from the vtiger_entityname table. Joe TSolucio Andrew Rodes escribi?: > > Ok, so I don?t remember this being broken, and I have scoured the > forums to no avail. > > > > I am having a problem importing custom fields into accounts. > > > > I found the function where the problem is occurring, but its so > blatent, I cant imagine I am correct. > > > > Basically, in CustomFieldUtil.php there is a function which is called > during the import. The function is as follows: > > > > function getCustomFieldArray($module) > > { > > global $log; > > $log->debug("Entering getCustomFieldArray(".$module.") > method ..."); > > global $adb; > > * $custquery = "select * from vtiger_field where > tablename='".$module."'";* > > $custresult = $adb->query($custquery); > > $custFldArray = Array(); > > $noofrows = $adb->num_rows($custresult); > > for($i=0; $i<$noofrows; $i++) > > { > > > $colName=$adb->query_result($custresult,$i,"column_name"); > > $custFldArray[$colName] = $i; > > } > > $log->debug("Exiting getCustomFieldArray method ..."); > > return $custFldArray; > > > > } > > > > However, on the line: > > *$custquery = "select * from vtiger_field where tablename='".$module."'";* > > * * > > the variable $module, always comes in as the expected ?Accounts? > > > > However, in the vtiger_field table the values stored in the tablename > column are all as expected such as: vtiger_account etc > > > > So this query returns NO custom fields for the module, and the import > fails.(actually it returns success, but the record doesn?t show up in > the ui since no custom field entries were made for it) > > > > ANY IDEAS? If not .. I will try to look for an elegant fix and share > it (not sure where to get the table name for the given module .. sure > its somewhere) > > > > > > Thanks, > > > > Andy > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From prasad at vtiger.com Sun Dec 23 19:47:35 2007 From: prasad at vtiger.com (Prasad) Date: Mon, 24 Dec 2007 09:17:35 +0530 Subject: [Vtigercrm-developers] schedualed tasks not running / properly In-Reply-To: <60539.196.209.76.237.1198239758.squirrel@www.ct-net.org> References: <60539.196.209.76.237.1198239758.squirrel@www.ct-net.org> Message-ID: <39d18b250712231947j23293631se7b8addfa1f59552@mail.gmail.com> Hi, Warning: require_once(include/database/PearDatabase.php): failed to open > stream: > No such file or directory in > C:\xampp\htdocs\vtigercrm\include\utils\utils.php on line 34 The files included in vtiger is relative to the base directory. SenderReminder.bat should read as: cd C:\xampp\htdocs\vtigercrm C:\xampp\php\php.exe SendReminder.php intimateTaskStatus.bat should read as: cd C:\xampp\htdocs\vtigercrm C:\xampp\php\php.exe cron\intimateTaskStatus.php cd will make sure that you have switched to the base directory before executing the script Regards, Prasad vtiger Team On 12/21/07, greg at ct-net.org wrote: > > Hi > > I'm using xammp and vtiger5.0.4 on windows 2000. > I can't seem to get the schedualed tasks to run correctly as per > http://wiki.vtiger.com/index.php/Installation_How_To%27s > > I have edited the .bat files for my environment xampp. > > SenderReminder.bat > C:\xampp\php\php.exe C:\xampp\htdocs\vtigercrm\SendReminder.php > > intimateTaskStatus.bat > C:\xampp\php\php.exe C:\xampp\htdocs\vtigercrm\cron\intimateTaskStatus.php > > When I run SenderReminder.bat i get the following > " > C:\xampp\htdocs\vtigercrm\modules\Calendar>Sendreminder.bat > > C:\xampp\htdocs\vtigercrm\modules\Calendar>C:\xampp\php\php.exe > C:\xampp\htdocs\ > vtigercrm\SendReminder.php > > Warning: require_once(include/database/PearDatabase.php): failed to open > stream: > No such file or directory in > C:\xampp\htdocs\vtigercrm\include\utils\utils.php > on line 34 > > Fatal error: require_once(): Failed opening required > 'include/database/PearDatab > ase.php' (include_path='.;C:\xampp\php\pear\') in > C:\xampp\htdocs\vtigercrm\incl > ude\utils\utils.php on line 34 > > C:\xampp\htdocs\vtigercrm\modules\Calendar>pause > Press any key to continue . . . > " > > what have i missed. > I also noticed that the stock notifier is not sending an email to warning > of low stock items .. ie below the reorder level, I have enabled this > under settings .. what else would i need for this to work . > > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071223/8c6d4d28/attachment.htm From greg at ct-net.org Mon Dec 24 17:24:04 2007 From: greg at ct-net.org (Gregory Machin) Date: Tue, 25 Dec 2007 03:24:04 +0200 Subject: [Vtigercrm-developers] schedualed tasks not running / properly Message-ID: <200712250127.lBP1RjCZ004645@vtigerforge.com> Hi . Thanks for the advice i'll follow up on it as soon as we r back at work . Merry xmas and best wishes . -----Original Message----- From: Prasad Sent: 24 December 2007 05:47 AM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] schedualed tasks not running / properly Hi, Warning: require_once(include/database/PearDatabase.php): failed to open stream: No such file or directory in C:\xampp\htdocs\vtigercrm\include\utils\utils.php on line 34 The files included in vtiger is relative to the base directory. SenderReminder.bat should read as: cd C:\xampp\htdocs\vtigercrm C:\xampp\php\php.exe SendReminder.php intimateTaskStatus.bat should read as: cd C:\xampp\htdocs\vtigercrm C:\xampp\php\php.exe cron\intimateTaskStatus.php cd will make sure that you have switched to the base directory before executing the script Regards, Prasad vtiger Team On 12/21/07, greg at ct-net.org wrote: Hi I'm using xammp and vtiger5.0.4 on windows 2000. I can't seem to get the schedualed tasks to run correctly as per http://wiki.vtiger.com/index.php/Installation_How_To%27s I have edited the .bat files for my environment xampp. SenderReminder.bat C:\xampp\php\php.exe C:\xampp\htdocs\vtigercrm\SendReminder.php [The entire original message is not included] -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071224/1df23a6c/attachment-0001.htm From weigelt at metux.de Fri Dec 28 14:32:40 2007 From: weigelt at metux.de (Enrico Weigelt) Date: Fri, 28 Dec 2007 23:32:40 +0100 Subject: [Vtigercrm-developers] Postgresql status? In-Reply-To: <1195720528.10349.0.camel@joesunix.int> References: <1195670732.17288.38.camel@joesunix.int> <20071121195905.B22767@Strawberry.COM> <474495C5.7000707@tsolucio.com> <39d18b250711220013h496b303er9f81ac090bdf9f8b@mail.gmail.com> <1195720528.10349.0.camel@joesunix.int> Message-ID: <20071228223240.GA7904@nibiru.local> Hi folks, now as some time's gone, what's the current status of the postgresql port ? cu -- ---------------------------------------------------------------------- Enrico Weigelt, metux IT service -- http://www.metux.de/ cellphone: +49 174 7066481 email: info at metux.de skype: nekrad666 ---------------------------------------------------------------------- Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme ---------------------------------------------------------------------- From weigelt at metux.de Fri Dec 28 14:36:52 2007 From: weigelt at metux.de (Enrico Weigelt) Date: Fri, 28 Dec 2007 23:36:52 +0100 Subject: [Vtigercrm-developers] terms+conditions text Message-ID: <20071228223652.GB7904@nibiru.local> Hi folks, is there way for changing the terms+conditions text template (w/o touching the code) ? thx -- ---------------------------------------------------------------------- Enrico Weigelt, metux IT service -- http://www.metux.de/ cellphone: +49 174 7066481 email: info at metux.de skype: nekrad666 ---------------------------------------------------------------------- Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme ---------------------------------------------------------------------- From weigelt at metux.de Fri Dec 28 14:39:01 2007 From: weigelt at metux.de (Enrico Weigelt) Date: Fri, 28 Dec 2007 23:39:01 +0100 Subject: [Vtigercrm-developers] [PATCH] PearDatabase: some new methods In-Reply-To: <11541eacf30.1877912300598081527.-6328444782417676545@vtiger.com> References: <20070926122938.GC21523@nibiru.local> <11541eacf30.1877912300598081527.-6328444782417676545@vtiger.com> Message-ID: <20071228223901.GC7904@nibiru.local> * Prasad schrieb: > > > this patch adds the methods run_query_field() and sql_concat() > > to the PearDatabase class ($adb variable), as already discussed > > Thank you for the patch. What's the current status on this patch ? cu -- ---------------------------------------------------------------------- Enrico Weigelt, metux IT service -- http://www.metux.de/ cellphone: +49 174 7066481 email: info at metux.de skype: nekrad666 ---------------------------------------------------------------------- Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme ---------------------------------------------------------------------- From weigelt at metux.de Fri Dec 28 15:03:54 2007 From: weigelt at metux.de (Enrico Weigelt) Date: Sat, 29 Dec 2007 00:03:54 +0100 Subject: [Vtigercrm-developers] [PATCH] TeX rendering API and invoice pdf In-Reply-To: <20070926125045.GE21523@nibiru.local> References: <20070926125045.GE21523@nibiru.local> Message-ID: <20071228230353.GD7904@nibiru.local> * Enrico Weigelt schrieb: Hi, > these patches add an universal rendering API for things like > invoices and an TeX renderer backend. The old invoice pdf code > is changed to run via the rendering API. Now it's very easy to > add new renderers. I also included my own templates as example. > > The API patch (renderapi-1) does not change anything but just > adding some new files in the lib/render/ subdir and could be > applied to 5.1 and 5.1_jens asap. What's the current status on my this patch ? cu From minnie at vtiger.com Sun Dec 30 21:59:41 2007 From: minnie at vtiger.com (Minnie A) Date: Mon, 31 Dec 2007 11:29:41 +0530 Subject: [Vtigercrm-developers] [PATCH] TeX rendering API and invoice pdf In-Reply-To: <20071228230353.GD7904@nibiru.local> References: <20070926125045.GE21523@nibiru.local> <20071228230353.GD7904@nibiru.local> Message-ID: Hi, Kindly find the status of the patches which taken up for 5.0.4 release. S.No Patch Contributor File Message Status Comment 1 new functions and some cleanups weigelt at metux.de01_PearDatabase_newfuncs.diff Hi folks, here are some patches (against latest trunk), which introduce the new functions and so some cleanups. cu Integrated 2 new functions and some cleanups weigelt at metux.de 3_strip_useless_comments.diff Integrated 3 remove noise in invoice module weigelt at metux.de02_nekrad-remove-noise.diffHi folks, this patch removes some noise in the invoice module ... cuNot integrated Expected behaviour. 4 PearDatabase.php sanity check in Move()weigelt at metux.de 08_nekrad_peardb_sanitycheck-1.diffHi folks, as we sometimes get some errors like: # Fatal error: Call to a member function Move() on a non-object # in .../include/database/PearDatabase.php on line 443 Obviously sometimes the query_result() method is called with an non-existing result object. This patch adds an check which throws an exception on missing result object, so we can easily track it down. cu Integrated 5 Invoice: fix PDF link weigelt at metux.deinvoice-link-pdf.diff Hi folks, this patch fixes the really strange javascript link for pdf invoice to an plain url. cuDifferent fix has been integrated. 6 some new $adb (PearDatabase) methods weigelt at metux.de09_nekrad_peardb- newfuncs.diff Hi folks, this patch adds two new functions to the PearDatabase ($adb) class: * sql_concat(array): generates an sql expression for field concatenations, based on selected RDBMS. * run_query_field(string): executes an given SQL query and returns only the first field of the first record. cu Integrated 7 leads module fix (postgres) weigelt at metux.de31_nekrad-leads-fix.diff Hi folks, the leads module (Tracker.php) suffers from an sql bug: it uses mysql specific sql statements for concatenating fields. This ends up in empty result objects and so the already mentioned error of trying to call Move() on non-object. This patch solves this by using the new PearDatabas::sql_concat() function (see prev. patch) for creating the statement. Also this patch calls the new PearDatabase::run_query_field() for the one-field-query. cuIntegrated with small modification. 8 Link leak in calendar module calendar viewjon at eyesopen.comcalendarlink.patch Integrated Thanks & Regards, Minnie On 12/29/07, Enrico Weigelt wrote: > > * Enrico Weigelt schrieb: > > Hi, > > > these patches add an universal rendering API for things like > > invoices and an TeX renderer backend. The old invoice pdf code > > is changed to run via the rendering API. Now it's very easy to > > add new renderers. I also included my own templates as example. > > > > The API patch (renderapi-1) does not change anything but just > > adding some new files in the lib/render/ subdir and could be > > applied to 5.1 and 5.1_jens asap. > > What's the current status on my this patch ? > > > cu > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071230/00d4f67a/attachment.htm From minnie at vtiger.com Sun Dec 30 22:07:22 2007 From: minnie at vtiger.com (Minnie A) Date: Mon, 31 Dec 2007 11:37:22 +0530 Subject: [Vtigercrm-developers] terms+conditions text In-Reply-To: <20071228223652.GB7904@nibiru.local> References: <20071228223652.GB7904@nibiru.local> Message-ID: Hi, Log in as admin user and go to Settings > Other Settings > Inventory Terms & Conditions. Here you can make the required changes. I hope this will help you. Thanks & Regards, Minnie. On 12/29/07, Enrico Weigelt wrote: > > > Hi folks, > > > is there way for changing the terms+conditions text template > (w/o touching the code) ? > > > thx > -- > ---------------------------------------------------------------------- > Enrico Weigelt, metux IT service -- http://www.metux.de/ > > cellphone: +49 174 7066481 email: info at metux.de skype: nekrad666 > ---------------------------------------------------------------------- > Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme > ---------------------------------------------------------------------- > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20071230/6728bd73/attachment.htm