Pages: [1]   Go Down
Author Topic: Extra details for the inventory  (Read 1055 times)
0 Members and 2 Guests are viewing this topic.
rbp88
Jr. Member
**

Karma: 0
Offline Offline

Posts: 13


View Profile
« on: August 24, 2010, 01:30:01 PM »

Hello,

I'd like to know why extra details for the inventory fields are in blank whether I press Update button?
And It occurs the same with the mail template, if I want to translate some template to Spanish it doesn't update.

Is it an Integria bug? Or is professional support required?

Thanks.
Logged

Sancho Lerena
Administrator
Expert member
*****

Karma: 24
Offline Offline

Posts: 1151


I can see everything... with my glasses :-)


View Profile WWW
« Reply #1 on: August 25, 2010, 08:51:22 AM »


Hello,

I'd like to know why extra details for the inventory fields are in blank whether I press Update button?
And It occurs the same with the mail template, if I want to translate some template to Spanish it doesn't update.

Is it an Integria bug? Or is professional support required?

Thanks.

What version are you using, the SVN current version ?
Logged

-- See you in the other screen.

rbp88
Jr. Member
**

Karma: 0
Offline Offline

Posts: 13


View Profile
« Reply #2 on: August 25, 2010, 09:39:55 AM »

Version 2.1 Development Snapshot Feb2010
Logged

Sancho Lerena
Administrator
Expert member
*****

Karma: 24
Offline Offline

Posts: 1151


I can see everything... with my glasses :-)


View Profile WWW
« Reply #3 on: August 25, 2010, 11:22:07 AM »

Version 2.1 Development Snapshot Feb2010

Try to upgrade to current SVN version, it works fine for me ¿?
Logged

-- See you in the other screen.

rbp88
Jr. Member
**

Karma: 0
Offline Offline

Posts: 13


View Profile
« Reply #4 on: August 26, 2010, 08:46:50 AM »

How or where can I get it? Because in the download page the last version is which I'm using...

Thanks.
Logged

Sancho Lerena
Administrator
Expert member
*****

Karma: 24
Offline Offline

Posts: 1151


I can see everything... with my glasses :-)


View Profile WWW
« Reply #5 on: August 26, 2010, 09:22:18 AM »

How or where can I get it? Because in the download page the last version is which I'm using...

Thanks.

Get a subversion command line client and execute this:

svn co https://integria.svn.sourceforge.net/svnroot/integria/trunk

This will grab all the current code for 2.1-dev version from our public code repository and store in your system. You can repeat this procedure to update your copy:

svn update https://integria.svn.sourceforge.net/svnroot/integria/trunk
Logged

-- See you in the other screen.

rbp88
Jr. Member
**

Karma: 0
Offline Offline

Posts: 13


View Profile
« Reply #6 on: August 26, 2010, 10:50:16 AM »

Ok, I did that and I installed a new integria from /trunk/install.php file and I have the same problem, the Extra details for the inventory aren't updated when I modified...
and the same problem wih the mail templates...

What is wrong?

Thank you very much
Logged

Sancho Lerena
Administrator
Expert member
*****

Karma: 24
Offline Offline

Posts: 1151


I can see everything... with my glasses :-)


View Profile WWW
« Reply #7 on: August 26, 2010, 11:02:31 AM »

Sorry, you're totally right, I've check the code and we have a bug, use the same method as before  (svn update ...) to get the changes.

Check also that your current database schema (in the database manager) has included the extra fields, for that, go to database manager and run

describe tinventory;

See the screenshot attached. You should have, at the end the extra fields, if not run, line by line following sentences in the SQL manager to add the fields:

ALTER TABLE tinventory ADD `generic_1` varchar(255) default '';
ALTER TABLE tinventory ADD  `generic_2` varchar(255) default '';
ALTER TABLE tinventory ADD  `generic_3` text;
ALTER TABLE tinventory ADD  `generic_4` text;
ALTER TABLE tinventory ADD  `generic_5` varchar(255) default '';
ALTER TABLE tinventory ADD  `generic_6` varchar(255) default '';
ALTER TABLE tinventory ADD  `generic_7` varchar(255) default '';
ALTER TABLE tinventory ADD  `generic_8` text;

Thanks for noticing us about this problem !



Ok, I did that and I installed a new integria from /trunk/install.php file and I have the same problem, the Extra details for the inventory aren't updated when I modified...
and the same problem wih the mail templates...

What is wrong?

Thank you very much


* sqlmanager.png (74.52 KB, 1017x615 - viewed 11 times.)
Logged

-- See you in the other screen.

rbp88
Jr. Member
**

Karma: 0
Offline Offline

Posts: 13


View Profile
« Reply #8 on: August 26, 2010, 12:49:06 PM »

I did that you say but anyway the extra details for the inventory are never updated...
and the same with the mail templates. I know I'm repetitive but we need these utilities.

I attached a screenshot where you can see I added these fields.

Thanks.


* bbdd_integria.jpg (84.59 KB, 1056x425 - viewed 13 times.)
Logged

Sancho Lerena
Administrator
Expert member
*****

Karma: 24
Offline Offline

Posts: 1151


I can see everything... with my glasses :-)


View Profile WWW
« Reply #9 on: August 26, 2010, 06:03:36 PM »

Execute:

svn update https://integria.svn.sourceforge.net/svnroot/integria/trunk

In the same directory you execute before the

svn co https://integria.svn.sourceforge.net/svnroot/integria/trunk

(or execute the last command again and put all the files in the apache publication directory).
Logged

-- See you in the other screen.

rbp88
Jr. Member
**

Karma: 0
Offline Offline

Posts: 13


View Profile
« Reply #10 on: August 27, 2010, 12:20:31 PM »

That's what I did, I put all the files in the apache publication directory but is like nothing... :\
Logged

Sancho Lerena
Administrator
Expert member
*****

Karma: 24
Offline Offline

Posts: 1151


I can see everything... with my glasses :-)


View Profile WWW
« Reply #11 on: August 31, 2010, 02:15:29 PM »

This is a output of my tinventory table. This is obtained with "DESCRIBE tinventory;" in SQL manager:

id    mediumint(8) unsigned    NO    PRI       auto_increment
name    varchar(100)    NO          
description    varchar(250)    YES          
serial_number    varchar(250)    YES          
part_number    varchar(250)    YES          
comments    varchar(250)    YES          
confirmed    tinyint(1)    YES       0    
cost    float(10,3)    YES       0.000    
ip_address    varchar(60)    YES          
id_contract    mediumint(8) unsigned    YES    MUL       
id_product    mediumint(8) unsigned    YES    MUL       
id_sla    mediumint(8) unsigned    YES    MUL       
id_manufacturer    mediumint(8) unsigned    YES    MUL       
id_building    mediumint(8) unsigned    YES    MUL       
id_parent    mediumint(8) unsigned    YES    MUL       
generic_1    varchar(255)    YES          
generic_2    varchar(255)    YES          
generic_3    text    YES          
generic_4    text    YES          
generic_5    varchar(255)    YES          
generic_6    varchar(255)    YES          
generic_7    varchar(255)    YES          
generic_8    text    YES       

Yours should be the same.
I've defined my custom fields in the setup, because I've it working with current SVN code ¿?
Logged

-- See you in the other screen.

rbp88
Jr. Member
**

Karma: 0
Offline Offline

Posts: 13


View Profile
« Reply #12 on: September 01, 2010, 10:06:38 AM »

Ok I have the same, but the problem still cotinues... does it work for you?
Logged

Sancho Lerena
Administrator
Expert member
*****

Karma: 24
Offline Offline

Posts: 1151


I can see everything... with my glasses :-)


View Profile WWW
« Reply #13 on: September 01, 2010, 03:52:35 PM »

Ok I have the same, but the problem still cotinues... does it work for you?

Yes, mine works fine, I check it and fix the problem when you started the thread in the forum.
Logged

-- See you in the other screen.

Pages: [1]   Go Up
Print
 
Jump to:  


SourceForge.net Logo  This site is monitored by Pandora FMS   ArticaST