Erros Comuns e Soluções

De Office System
Revisão de 13h30min de 23 de agosto de 2018 por 186.251.168.21 (discussão)
Ir para navegação Ir para pesquisar
  • Erros relacionados com "nao é possivel registrar.." ou "verifique conexão com internet.." pode ser causada por alguma queda de conexão ou instabilidade no servidor de licenças, para verificar acesse: http://services.officesystem.com.br/ws/mobile/services.php. Se pedir usuário e senha está OK.
  • Erros após login/sincronização de um novo cliente, deve-se executar as sql abaixo:
update estados set uf = uf;

update produtos pr set pr.pr_nome = 'Sem Descrição' where pr.pr_nome is null or pr.pr_nome = '';
update produtos pr set pr.pr_unidade = 'UN' where pr.pr_unidade is null or pr.pr_unidade = '';
update produtos pr set pr.pr_inativo = 'N' where pr.pr_inativo is null or pr.pr_inativo = '';
update produtos pr set pr.pr_naopalm = 'N' where pr.pr_naopalm is null or pr.pr_naopalm = '';
update produtos pr set pr.pr_tribut = :codtributacao where pr.pr_tribut is null;

update formapgto fp set fp.fp_inativo = 'N' where fp.fp_inativo is null or fp.fp_inativo = '';
update formapgto fp set fp.fp_pagocom = :tipoPgtoParcelas where (coalesce(fp.fp_pagocom,'') not in (select tp.tp_nome from tipopgto tp));
update formapgto fp set fp.fp_tpentrada = :tipoPgtoEntrada where (coalesce(fp.fp_tpentrada,'') not in (select tp.tp_nome from tipopgto tp));

update paramesp set bloq_clideve = 'N' where bloq_clideve is null or bloq_clideve = '';
update paramesp set ped_usa2qtd = 'N' where ped_usa2qtd is null or ped_usa2qtd = '';
update paramesp set ped_usaqtddev = 'N' where ped_usaqtddev is null or ped_usaqtddev = '';
update paramesp set tblpreco = 0 where tblpreco is null;
update paramesp set frete_vd = 'Emitente' where frete_vd is null;

update usuarios set us_mobilesincauto = 'N' where us_mobilesincauto is null or us_mobilesincauto='';
update usuarios set us_trocapgto = 'N' where us_trocapgto is null or us_trocapgto = '';
update usuarios set us_naoctareceb = 'N' where us_naoctareceb is null or us_naoctareceb = '';

delete from precotbl pt where pt.pt_valoruni is null
delete from pracas where pc_nome is null
select 'Problema no Vendedor ('||cl.cl_vendedor||') do Cliente: '||cl.cl_codigo from clientes cl
where cl.cl_vendedor not in (select vo.vo_codigo from vendedor vo)
union all
select 'Problema na FormaPGTO ('||cl.cl_fpgto||') do Cliente: '||cl.cl_codigo from clientes cl
where cl.cl_fpgto not in (select fp.fp_codigo from formapgto fp)
union all
select 'Problema na TBLPreco ('||cl.cl_tblpreco||') do Cliente: '||cl.cl_codigo from clientes cl
where cl.cl_tblpreco in (select tp.tp_codigo from tblpreco tp where tp.tp_naoexp = 'S')
union all
select 'Problema no PrecoTBL tabela:'||pt.PT_TABELA||', produto:'||pt.PT_PRODUTO||' valor unitario esta null' from precotbl pt
where pt.PT_VALORUNI is null
union all
select 'Problema na tabela de preco da Forma de Pagamento:'||fp.fp_codigo||' - '||fp.fp_nome from formapgto fp
where fp.fp_tblpreco in (select tp.tp_codigo from tblpreco tp where tp.tp_naoexp = 'S')
union all
select 'Problema nos tipos de pgto da Forma de Pagamento:'||fp.fp_codigo||' - '||fp.fp_nome from formapgto fp
where (coalesce(fp.fp_pagocom,'') not in (select tp.tp_nome from tipopgto tp)) or (coalesce(fp.fp_tpentrada,'') not in (select tp.tp_nome from tipopgto tp))
union all
select 'Problema na tributacao'||tr.tr_codigo||' nao cadastrada para a UF dos parametros' from tributacao tr
where tr.tr_codigo not in (select dt.dt_tributacao from detltrib dt where dt.dt_uf in (select distinct fl_uf from filiais))
union all
select 'Problema em CtaReceb controle:'||cr.cr_controle||' cliente null (Excluir)' from ctareceb cr
where cr.cr_controle in (select cr2.cr_controle from ctareceb cr2 where cr2.cr_cliente is null )