
function verificaLoginHistorico(){var _c="";if(queryScript('c')!=null){_c='&c='+queryScript('c');}
window.location.replace(URL('historico_compras.aspx?dt='+Date()+''+_c));}
function formata_preco(valor){var num=new NumberFormat();num.setInputDecimal('.');num.setNumber(valor);num.setPlaces('2',false);num.setCurrencyValue('R$ ');num.setCurrency(true);num.setCurrencyPosition(num.LEFT_OUTSIDE);num.setNegativeFormat(num.LEFT_DASH);num.setNegativeRed(false);num.setSeparators(true,',',',');return num.toFormatted();}
function retorno_abreDetalhes(ret){var dt=ret.value;var ni=document.getElementById('itens_carrinho');var newLinha=null;var newColuna=null;for(i=0;i<ni.rows.length;i++){ni.deleteRow(0);}
var dt_expirada=true;for(i=0;i<dt.Rows.length;i++){if(new Date(dt.Rows[i].data_confirmacao_pgto).addday(parseInt(dt.Rows[i].dias_expira),false)>new Date().addday(0,false)){dt_expirada=false;}
newLinha=ni.insertRow(i);newColuna=newLinha.insertCell(0).innerHTML=dt.Rows[i].titulo;newColuna=newLinha.insertCell(1).innerHTML=formata_preco(dt.Rows[i].preco_total);newColuna=newLinha.insertCell(2).innerHTML=((dt.Rows[i].entrega_fisica=='0')?((dt_expirada)?"Download Indisponível":"<a href=\"download.aspx?c="+dt.Rows[i].carrinho_compras_fk+"&p="+dt.Rows[i].produto_item_pk+"\"  "+((dt.Rows[i].download==false&&dt.Rows[i].popup=='nao')?" onclick=\"abreDownload('download.aspx?c="+dt.Rows[i].carrinho_compras_fk+"&p="+dt.Rows[i].produto_item_pk+"'); return false;\"":"")+"\>"+((dt.Rows[i].popup=="nao")?"Download":"Acessar")+"</a>"):"Produto físico");}
tiraDiv('bt_progress');}
function abreDownload(url){window.open(url,'download','width=500,height=500');}
function abreDetalhes(quem){exibeDiv('bt_progress');$('itens_carrinho').style.display='';$('tb_itens').className='tabela visible';historico_compras.RetornaDtQuantidades(quem,retorno_abreDetalhes);}