From vtiger-tickets at trac.vtiger.com Mon Aug 4 00:44:30 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 04 Aug 2008 07:44:30 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5327: Design Flaw? Message-ID: <048.f5071531f371c3de17a34d349e951899@trac.vtiger.com> #5327: Design Flaw? ---------------------------+------------------------------------------------ Reporter: Ed.Grysiewicz | Owner: developer Type: defect | Status: new Priority: critical | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: fopen | ---------------------------+------------------------------------------------ I have a client running vTiger on a subdomain at an ISP... The ISP cites security concerns and will not turn Safe Mode On... As such, many flat files will be zeroed out due to fopen commands... Reading flat files is no problem.. It's the fopen causing the problem... All CHMOD's are correctly set... Case in point... Invoice Number Incrementing... InventoryUtils.php around line 862 writes the incremented invoice number back to the flat file... however, fopen initializes the file by setting it to a zero length and generates an error... can't open file... //we have the contents in buffer. Going to write the contents in file fclose($readhandle); $handle = fopen($filename, "w"); fputs($handle, $new_buffer); fclose($handle); ----------------------- here is the error... Warning: fopen(/www/medlegal/admin.medlegalfirst.com/pages/user_privileges/CustomInvoiceNo.php) [function.fopen]: failed to open stream: Operation not permitted in /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php on line 863 Warning: fputs(): supplied argument is not a valid stream resource in /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php on line 864 Warning: fclose(): supplied argument is not a valid stream resource in /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php on line 865 Warning: Cannot modify header information - headers already sent by (output started at /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php:863) in /www/medlegal/admin.medlegalfirst.com/pages/modules/Invoice/Save.php on line 55 ----------------------- As a work around in InventoryUtils.php I did the following which works fine... rewind ($readhandle); if (fwrite($readhandle, $new_buffer) === FALSE) { echo "Cannot write to file ($filename)"; exit; } fclose($readhandle); ---------------------------- In short, EVERY instance of writing to flat files with an fopen sets the file to zero... followed by an error... This is especially damaging when it's the UserPrivledge files which I CHMOD'd to prevent the error... COMMENTS AND THOUGHTS WELCOMED HOPE THIS MAKES SENSE.... PERHAPS YOU HAVE SOME OTHER IDEAS -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 4 01:06:53 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 04 Aug 2008 08:06:53 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5328: New Contact is created when click on qualify button in Webmail Message-ID: <040.d626161780858aad3fe85aefef7e024e@trac.vtiger.com> #5328: New Contact is created when click on qualify button in Webmail -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- When you open an email in the webmail and qualify that email without checking whether the from email id exist for a contact instead its creating new contact each time i qualify the email. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 4 01:12:27 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 04 Aug 2008 08:12:27 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5329: UTF-8 are not dispalyed properly in related list view when qualified Message-ID: <040.f16a29613250d1fc4e39d8cddda4b7c6@trac.vtiger.com> #5329: UTF-8 are not dispalyed properly in related list view when qualified -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- I am trying to qualify an email having utf-8 character in the subject of the email, the email is attached to a contact but the utf-8 character are not displaying properly in the related list view of that contact -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Tue Aug 5 02:10:16 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Tue, 05 Aug 2008 09:10:16 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5330: issue with sharing access when more no. of users are there. Message-ID: <041.384f19e0dd063fc9ec23dc27261bd520@trac.vtiger.com> #5330: issue with sharing access when more no. of users are there. ------------------------+--------------------------------------------------- Reporter: pratim | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- when we have more no. of users(as much as 100) and here if we will put some no. of users in one group(group1) and another no. of users in another group(grou2), then if we will put sharing access rule that any module is private,and group2 can access group1 records then after recalculating I can see every users?(not only group2 users) can access the records of group1. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Sun Aug 17 10:30:01 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Sun, 17 Aug 2008 17:30:01 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5333: translatable custom field labels Message-ID: <044.5f638f268d38fdc65774135062a3e488@trac.vtiger.com> #5333: translatable custom field labels ----------------------------------------------------------+----------------- Reporter: joebordes | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: i18n translate custom field label fieldlabel | ----------------------------------------------------------+----------------- If you create a custom field in one language and then use the language files to translate that fieldlabel to other languages the original language label is always shown.[[BR]] I attach a patch to fix this. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 18 05:38:07 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 18 Aug 2008 12:38:07 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5334: i18n issues with duplicate function Message-ID: <043.08c0c0353dafbec8dd500bfeb22244b4@trac.vtiger.com> #5334: i18n issues with duplicate function ------------------------+--------------------------------------------------- Reporter: frankpie | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- see screenshots attached (based on current SVN revision for 5.1.0) -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Tue Aug 19 02:51:35 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Tue, 19 Aug 2008 09:51:35 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5335: Reports viewing with different users Message-ID: <043.4ef867db23adaafe2847eb6c8d376f36@trac.vtiger.com> #5335: Reports viewing with different users -----------------------+---------------------------------------------------- Reporter: kasparov | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- If I made somekind reports with helpdesk module, by basic user I can't see any ticket id, not view mode or exporting excel. But if I make / use same report by admin user, I can see all ticket id. Not tested with other modules. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Tue Aug 19 08:41:46 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Tue, 19 Aug 2008 15:41:46 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5336: duplicate invoice number error on deleted invoices Message-ID: <044.018c6d737dc252efd5a903816e028112@trac.vtiger.com> #5336: duplicate invoice number error on deleted invoices ------------------------+--------------------------------------------------- Reporter: joebordes | Owner: developer Type: patch | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- We have deleted the few invoices that we had and reestablished the invoice number counter after testing to start using the system and have found that we cannot create invoices because we get a duplicate number error.[[BR]] After checking the CheckDuplicateInvoiceNumber() function we see that it does not check for the case of deleted invoices and have changed it accordingly.[[BR]] I don't know if this way of fixing this is correct but I attach the patch just in case. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Thu Aug 21 00:04:43 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Thu, 21 Aug 2008 07:04:43 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5337: Size of window of the pick-lists do not fit the size of the content of the pick-lists Message-ID: <040.3d6fd4e66a6151e9739541e7d571fd1a@trac.vtiger.com> #5337: Size of window of the pick-lists do not fit the size of the content of the pick-lists -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- When using internet explorer: The size of the windows of the pick-lists do not fit the size of the content of the pick-lists within the following sections: 1) analytics->reports. Create a new report ->last step of creating reports 2) settings-> pick-list editor: pick-list: select role and pick-list global delete -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Fri Aug 22 04:26:18 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 22 Aug 2008 11:26:18 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5338: merge fields of emails are not populating the values Message-ID: <040.dcc2f824f70775b140aebdf67c72a73e@trac.vtiger.com> #5338: merge fields of emails are not populating the values -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: minor | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- When using merge fields in templates to send mass emails to contacts: it does not populate the values of the "account merge fields", neither the values of the "user merge fields. Also: is it possible to use merge fields for the following fields: * in leads: company name * in leads, accounts/contacts information of the owner of the record: first name, last name, title, contact information including: email, phone, address. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Fri Aug 22 08:35:16 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 22 Aug 2008 15:35:16 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5338: merge fields of emails are not populating the values In-Reply-To: <040.dcc2f824f70775b140aebdf67c72a73e@trac.vtiger.com> References: <040.dcc2f824f70775b140aebdf67c72a73e@trac.vtiger.com> Message-ID: <049.2be23d3527692af627e47f792752ae3a@trac.vtiger.com> #5338: merge fields of emails are not populating the values --------------------------+------------------------------------------------- Reporter: nitin | Owner: developer Type: enhancement | Status: new Priority: minor | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Resolution: | Keywords: --------------------------+------------------------------------------------- Changes (by pavani): * type: defect => enhancement -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 25 00:39:42 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 25 Aug 2008 07:39:42 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5339: The totals of the reports are not working Message-ID: <040.382375f70eb122d636007f1677af5935@trac.vtiger.com> #5339: The totals of the reports are not working -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: critical | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- The totals of the reports are not working In modules\Reports\Save.php for columnstototal we forgot to change the value of '''$allKeys = array_keys($HTTP_POST_VARS)''' to '''allKeys = array_keys($_REQUEST)''' although for advancedfilter we are using the correct one. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 25 07:44:36 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 25 Aug 2008 14:44:36 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5340: Account names can't contain apostrophes Message-ID: <046.88e94464924e6923725ab4db5add28b3@trac.vtiger.com> #5340: Account names can't contain apostrophes -------------------------+-------------------------------------------------- Reporter: Mike.Sasena | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -------------------------+-------------------------------------------------- vtiger will allow you to create an account with an apostrophe within the name, e.g. "Joe's Crab Shack". However, if you try to associate a contact with that account, it will not work. When you select it by editing the contact's "account" field, it will return a blank. So you can create an account with an apostrophe, but you can't use it. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Wed Aug 27 05:03:48 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Wed, 27 Aug 2008 12:03:48 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5341: Update INSTALLATION.txt of CoustomerPortal Message-ID: <040.912fcd4d1e6404f8a97643094c7f71ae@trac.vtiger.com> #5341: Update INSTALLATION.txt of CoustomerPortal ------------------------+--------------------------------------------------- Reporter: varma | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- Right now INSTALLATION.txt of vtiger Customer Portal 5.0.4 installation procedure is pointing to wrong urls. Content of the INSTALLATION.txt mentioned below : {{{ ----------------------------------------------------- vtiger Customer Portal 4.0.1 Beta Installation Manual ----------------------------------------------------- Please refer to the following URL for vtiger Customer Portal installation procedure: http://vtiger.com/products/crm/help/vtiger_Customer_Portal_User_Guide.pdf Or http://www.vtiger.com/wiki/index.php/Vtiger_Customer_Portal_User_Guide }}} -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Thu Aug 28 22:05:42 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 29 Aug 2008 05:05:42 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5342: Problem with the UTF-8 characters in List View Message-ID: <041.d488c4a2dabbf049fdcbb62623fa02a8@trac.vtiger.com> #5342: Problem with the UTF-8 characters in List View ------------------------+--------------------------------------------------- Reporter: pratim | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- When we are giving a field value with UTF-8 characters then a & symbol is coming in between the letters . -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Fri Aug 29 02:51:15 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 29 Aug 2008 09:51:15 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5343: selecting multiple tProduct at a single time when creating SO, PO, Invoice, Quotes. Message-ID: <041.3731b14300fb0f0581d34cf73f7fea26@trac.vtiger.com> #5343: selecting multiple tProduct at a single time when creating SO,PO,Invoice,Quotes. -------------------------+-------------------------------------------------- Reporter: pratim | Owner: developer Type: enhancement | Status: new Priority: unassigned | Milestone: Component: vtigercrm | Version: Keywords: | -------------------------+-------------------------------------------------- When we are going to add/edit any of record from the module PO,SO,Invoice,Quotes then in Product Details block when we are selecting product we should be able to select more than one product at a time. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 4 03:44:30 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 04 Aug 2008 07:44:30 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5327: Design Flaw? Message-ID: <048.f5071531f371c3de17a34d349e951899@trac.vtiger.com> #5327: Design Flaw? ---------------------------+------------------------------------------------ Reporter: Ed.Grysiewicz | Owner: developer Type: defect | Status: new Priority: critical | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: fopen | ---------------------------+------------------------------------------------ I have a client running vTiger on a subdomain at an ISP... The ISP cites security concerns and will not turn Safe Mode On... As such, many flat files will be zeroed out due to fopen commands... Reading flat files is no problem.. It's the fopen causing the problem... All CHMOD's are correctly set... Case in point... Invoice Number Incrementing... InventoryUtils.php around line 862 writes the incremented invoice number back to the flat file... however, fopen initializes the file by setting it to a zero length and generates an error... can't open file... //we have the contents in buffer. Going to write the contents in file fclose($readhandle); $handle = fopen($filename, "w"); fputs($handle, $new_buffer); fclose($handle); ----------------------- here is the error... Warning: fopen(/www/medlegal/admin.medlegalfirst.com/pages/user_privileges/CustomInvoiceNo.php) [function.fopen]: failed to open stream: Operation not permitted in /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php on line 863 Warning: fputs(): supplied argument is not a valid stream resource in /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php on line 864 Warning: fclose(): supplied argument is not a valid stream resource in /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php on line 865 Warning: Cannot modify header information - headers already sent by (output started at /www/medlegal/admin.medlegalfirst.com/pages/include/utils/InventoryUtils.php:863) in /www/medlegal/admin.medlegalfirst.com/pages/modules/Invoice/Save.php on line 55 ----------------------- As a work around in InventoryUtils.php I did the following which works fine... rewind ($readhandle); if (fwrite($readhandle, $new_buffer) === FALSE) { echo "Cannot write to file ($filename)"; exit; } fclose($readhandle); ---------------------------- In short, EVERY instance of writing to flat files with an fopen sets the file to zero... followed by an error... This is especially damaging when it's the UserPrivledge files which I CHMOD'd to prevent the error... COMMENTS AND THOUGHTS WELCOMED HOPE THIS MAKES SENSE.... PERHAPS YOU HAVE SOME OTHER IDEAS -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 4 04:06:53 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 04 Aug 2008 08:06:53 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5328: New Contact is created when click on qualify button in Webmail Message-ID: <040.d626161780858aad3fe85aefef7e024e@trac.vtiger.com> #5328: New Contact is created when click on qualify button in Webmail -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- When you open an email in the webmail and qualify that email without checking whether the from email id exist for a contact instead its creating new contact each time i qualify the email. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 4 04:12:27 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 04 Aug 2008 08:12:27 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5329: UTF-8 are not dispalyed properly in related list view when qualified Message-ID: <040.f16a29613250d1fc4e39d8cddda4b7c6@trac.vtiger.com> #5329: UTF-8 are not dispalyed properly in related list view when qualified -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- I am trying to qualify an email having utf-8 character in the subject of the email, the email is attached to a contact but the utf-8 character are not displaying properly in the related list view of that contact -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Tue Aug 5 05:10:16 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Tue, 05 Aug 2008 09:10:16 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5330: issue with sharing access when more no. of users are there. Message-ID: <041.384f19e0dd063fc9ec23dc27261bd520@trac.vtiger.com> #5330: issue with sharing access when more no. of users are there. ------------------------+--------------------------------------------------- Reporter: pratim | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- when we have more no. of users(as much as 100) and here if we will put some no. of users in one group(group1) and another no. of users in another group(grou2), then if we will put sharing access rule that any module is private,and group2 can access group1 records then after recalculating I can see every users?(not only group2 users) can access the records of group1. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Sun Aug 17 13:30:01 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Sun, 17 Aug 2008 17:30:01 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5333: translatable custom field labels Message-ID: <044.5f638f268d38fdc65774135062a3e488@trac.vtiger.com> #5333: translatable custom field labels ----------------------------------------------------------+----------------- Reporter: joebordes | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: i18n translate custom field label fieldlabel | ----------------------------------------------------------+----------------- If you create a custom field in one language and then use the language files to translate that fieldlabel to other languages the original language label is always shown.[[BR]] I attach a patch to fix this. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 18 08:38:07 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 18 Aug 2008 12:38:07 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5334: i18n issues with duplicate function Message-ID: <043.08c0c0353dafbec8dd500bfeb22244b4@trac.vtiger.com> #5334: i18n issues with duplicate function ------------------------+--------------------------------------------------- Reporter: frankpie | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- see screenshots attached (based on current SVN revision for 5.1.0) -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Tue Aug 19 05:51:35 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Tue, 19 Aug 2008 09:51:35 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5335: Reports viewing with different users Message-ID: <043.4ef867db23adaafe2847eb6c8d376f36@trac.vtiger.com> #5335: Reports viewing with different users -----------------------+---------------------------------------------------- Reporter: kasparov | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- If I made somekind reports with helpdesk module, by basic user I can't see any ticket id, not view mode or exporting excel. But if I make / use same report by admin user, I can see all ticket id. Not tested with other modules. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Tue Aug 19 11:41:46 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Tue, 19 Aug 2008 15:41:46 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5336: duplicate invoice number error on deleted invoices Message-ID: <044.018c6d737dc252efd5a903816e028112@trac.vtiger.com> #5336: duplicate invoice number error on deleted invoices ------------------------+--------------------------------------------------- Reporter: joebordes | Owner: developer Type: patch | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- We have deleted the few invoices that we had and reestablished the invoice number counter after testing to start using the system and have found that we cannot create invoices because we get a duplicate number error.[[BR]] After checking the CheckDuplicateInvoiceNumber() function we see that it does not check for the case of deleted invoices and have changed it accordingly.[[BR]] I don't know if this way of fixing this is correct but I attach the patch just in case. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Thu Aug 21 03:04:43 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Thu, 21 Aug 2008 07:04:43 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5337: Size of window of the pick-lists do not fit the size of the content of the pick-lists Message-ID: <040.3d6fd4e66a6151e9739541e7d571fd1a@trac.vtiger.com> #5337: Size of window of the pick-lists do not fit the size of the content of the pick-lists -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: major | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- When using internet explorer: The size of the windows of the pick-lists do not fit the size of the content of the pick-lists within the following sections: 1) analytics->reports. Create a new report ->last step of creating reports 2) settings-> pick-list editor: pick-list: select role and pick-list global delete -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Fri Aug 22 07:26:18 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 22 Aug 2008 11:26:18 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5338: merge fields of emails are not populating the values Message-ID: <040.dcc2f824f70775b140aebdf67c72a73e@trac.vtiger.com> #5338: merge fields of emails are not populating the values -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: minor | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- When using merge fields in templates to send mass emails to contacts: it does not populate the values of the "account merge fields", neither the values of the "user merge fields. Also: is it possible to use merge fields for the following fields: * in leads: company name * in leads, accounts/contacts information of the owner of the record: first name, last name, title, contact information including: email, phone, address. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Fri Aug 22 11:35:16 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 22 Aug 2008 15:35:16 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5338: merge fields of emails are not populating the values In-Reply-To: <040.dcc2f824f70775b140aebdf67c72a73e@trac.vtiger.com> References: <040.dcc2f824f70775b140aebdf67c72a73e@trac.vtiger.com> Message-ID: <049.2be23d3527692af627e47f792752ae3a@trac.vtiger.com> #5338: merge fields of emails are not populating the values --------------------------+------------------------------------------------- Reporter: nitin | Owner: developer Type: enhancement | Status: new Priority: minor | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Resolution: | Keywords: --------------------------+------------------------------------------------- Changes (by pavani): * type: defect => enhancement -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 25 03:39:42 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 25 Aug 2008 07:39:42 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5339: The totals of the reports are not working Message-ID: <040.382375f70eb122d636007f1677af5935@trac.vtiger.com> #5339: The totals of the reports are not working -----------------------+---------------------------------------------------- Reporter: nitin | Owner: developer Type: defect | Status: new Priority: critical | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -----------------------+---------------------------------------------------- The totals of the reports are not working In modules\Reports\Save.php for columnstototal we forgot to change the value of '''$allKeys = array_keys($HTTP_POST_VARS)''' to '''allKeys = array_keys($_REQUEST)''' although for advancedfilter we are using the correct one. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Mon Aug 25 10:44:36 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Mon, 25 Aug 2008 14:44:36 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5340: Account names can't contain apostrophes Message-ID: <046.88e94464924e6923725ab4db5add28b3@trac.vtiger.com> #5340: Account names can't contain apostrophes -------------------------+-------------------------------------------------- Reporter: Mike.Sasena | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | -------------------------+-------------------------------------------------- vtiger will allow you to create an account with an apostrophe within the name, e.g. "Joe's Crab Shack". However, if you try to associate a contact with that account, it will not work. When you select it by editing the contact's "account" field, it will return a blank. So you can create an account with an apostrophe, but you can't use it. -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Wed Aug 27 08:03:48 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Wed, 27 Aug 2008 12:03:48 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5341: Update INSTALLATION.txt of CoustomerPortal Message-ID: <040.912fcd4d1e6404f8a97643094c7f71ae@trac.vtiger.com> #5341: Update INSTALLATION.txt of CoustomerPortal ------------------------+--------------------------------------------------- Reporter: varma | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- Right now INSTALLATION.txt of vtiger Customer Portal 5.0.4 installation procedure is pointing to wrong urls. Content of the INSTALLATION.txt mentioned below : {{{ ----------------------------------------------------- vtiger Customer Portal 4.0.1 Beta Installation Manual ----------------------------------------------------- Please refer to the following URL for vtiger Customer Portal installation procedure: http://vtiger.com/products/crm/help/vtiger_Customer_Portal_User_Guide.pdf Or http://www.vtiger.com/wiki/index.php/Vtiger_Customer_Portal_User_Guide }}} -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Fri Aug 29 01:05:42 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 29 Aug 2008 05:05:42 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5342: Problem with the UTF-8 characters in List View Message-ID: <041.d488c4a2dabbf049fdcbb62623fa02a8@trac.vtiger.com> #5342: Problem with the UTF-8 characters in List View ------------------------+--------------------------------------------------- Reporter: pratim | Owner: developer Type: defect | Status: new Priority: unassigned | Milestone: 5.1.0 Component: vtigercrm | Version: 5.0.4 Keywords: | ------------------------+--------------------------------------------------- When we are giving a field value with UTF-8 characters then a & symbol is coming in between the letters . -- Ticket URL: vtiger development vtigerCRM From vtiger-tickets at trac.vtiger.com Fri Aug 29 05:51:15 2008 From: vtiger-tickets at trac.vtiger.com (vtiger development) Date: Fri, 29 Aug 2008 09:51:15 -0000 Subject: [Vtigercrm-commits] [vtiger development] #5343: selecting multiple tProduct at a single time when creating SO, PO, Invoice, Quotes. Message-ID: <041.3731b14300fb0f0581d34cf73f7fea26@trac.vtiger.com> #5343: selecting multiple tProduct at a single time when creating SO,PO,Invoice,Quotes. -------------------------+-------------------------------------------------- Reporter: pratim | Owner: developer Type: enhancement | Status: new Priority: unassigned | Milestone: Component: vtigercrm | Version: Keywords: | -------------------------+-------------------------------------------------- When we are going to add/edit any of record from the module PO,SO,Invoice,Quotes then in Product Details block when we are selecting product we should be able to select more than one product at a time. -- Ticket URL: vtiger development vtigerCRM