Closed Bug 269848 Opened 20 years ago Closed 20 years ago

fineco.it - unable to open page in the portfolio section

Categories

(Tech Evangelism Graveyard :: Italian, defect)

x86
Windows XP
defect
Not set
minor

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: simone, Unassigned)

References

()

Details

User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0

in the "portfolio" section of the website, clicking on the link to view details
of a given stock: no page appear. the same function does work in the "trading"
section. It is clearly a Javascript problem:

// function from trading (working) //
function toquot(mkt, s) {
	titoli = 'Quote.tibco?view=titolo';
	if (mkt.indexOf('AFF') == 0) { mercato = 'MI' ; }
	else if (mkt.indexOf('SBF') == 0) { mercato = 'PAR' ; }
	else if (mkt.indexOf('XETRA') == 0) { mercato = 'FRA' ; }
	else if (mkt.indexOf('NASDAQ-NM') == 0) { mercato = 'O' ; }
	else if (mkt.indexOf('NYSE') == 0) { mercato = 'N' ; }
	else if (mkt.indexOf('AMEX') == 0) { mercato = 'A' ; }
	else if (mkt.indexOf('BOND') == 0) { mercato = 'BOND' ; titoli =
'Quote.tibco?view=titolobond'; }
	else { mercato = 'MI' ; }

	if (mkt.indexOf('QX') == 0) { 
		titoli = 'http://tradequote.fineco.it/QXQuote.tibco?view=titoloqx&symbols=' +
s + '.LM'; }
	else {
		titoli = 'http://tradequote.fineco.it/' + mercato + titoli + '&symbols=' + s +
'.' + mercato ; 
	}
	window.open(titoli, 'f2'); 
}



// function from portfolio (not working) //
function toquot(mkt, s) {
        titoli = 'Quote.tibco?view=titolo';
        if (mkt.indexOf('AFF') == 0) { mercato = 'MI' ; }
        else if (mkt.indexOf('SBF') == 0) { mercato = 'PAR' ; }
        else if (mkt.indexOf('XETRA') == 0) { mercato = 'FRA' ; }
        else if (mkt.indexOf('NASDAQ-NM') == 0) { mercato = 'O' ; }
        else if (mkt.indexOf('NYSE') == 0) { mercato = 'N' ; }
        else if (mkt.indexOf('AMEX') == 0) { mercato = 'A' ; }
        else if (mkt.indexOf('BOND') == 0) { mercato = 'BOND' ; titoli =
'Quote.tibco?view=titolobond'; }
        else { mercato = 'MI' ; }

        if (mkt.indexOf('QX') == 0) {
        titoli =
'http://tradequote.fineco.it/QXQuote.tibco?view=titoloqx&symbols=' + s + '.LM'; }  
        else {
        titoli = 'http://tradequote.fineco.it/' + mercato + titoli + '&symbols='
+ s + '.' + mercato ; }

	if (document.all) {
        	window.open(titoli, 'f2');
	} else {
		window.top.open(titoli, 'f2');
	}
}

Reproducible: Always
Steps to Reproduce:
1. login to your bank account on fineco.it
2. go to the portfolio section and click on a link in the stock list

Actual Results:  
nothing

Expected Results:  
a new page with details of the selected stock should have appeared

page is only accessible by the bank's clients
Conforming summary to TFM item 10 at 
http://www.mozilla.org/projects/tech-evangelism/site/procedures.html#file-new

Reporter, when you file a TE bug, please follow the reporting guidelines.
Summary: unable to open page in the portfolio section → fineco.it - unable to open page in the portfolio section
The company fixed the problem, now it works.
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in before you can comment on or make changes to this bug.