public static function getLancamentos($offset, $limit) { $lancFinDao = new LancamentosFinanceirosDao(); $lancamentos = $lancFinDao->getLancamentos($offset, $limit, $_GET); if ($lancamentos) { Flight::json($lancamentos); } else { Flight::halt(404, 'Nenhum lançamento encontrado!'); } }
/* end */ /*Busca Pagamentos a fornecedores*/ $where = "(id_tipo_conta <> 5 OR (id_tipo_conta =5 AND (flg_caixa_fechado = 0 OR flg_caixa_fechado IS NULL ) ) AND flg_tipo_lancamento = 'D' ) AND (flg_transferencia_conta = 0 OR \n\t\t\t flg_transferencia_conta IS NULL) AND id_empreendimento = {$id_empreendimento} AND data_pagamento between '{$now} 00:00:00' and '{$now} 23:59:59' \n\t\t\t AND id_plano_conta <> '{$id_plano_conta_pagamento_profissional}' AND id_clienteORfornecedor <> '{$id_fornecedor_movimentacao_caixa}' AND flg_tipo_lancamento = 'D' AND status_pagamento = 1 order by \n\t\t dta_entrada asc"; $aux = $LancamentosFinanceirosDao->getLancamentos(null, null, array('cplSql' => $where)); $outrasDespesas = $aux ? getParcelas($aux['pagamentos']) : array(); usort($outrasDespesas, 'ordenaDta'); /*end*/ /*Busca atendimentos*/ $AtendimentoDao = new AtendimentoDao(); $atendimentos = $AtendimentoDao->getFilaAtendimento(null, null, array("cplSql" => "ta.id_empreendimento={$id_empreendimento} AND ta.id_profissional_atendimento IS NOT NULL AND ta.id_atendimento_origem IS NULL AND date_format(ta.dta_entrada,'%Y-%m-%d') = '{$now}' ORDER BY ta.dta_entrada ASC")); $atendimentos = $atendimentos ? $atendimentos : array(); /*end*/ /*Busca Pagamentos por forma de pagamento*/ $LancamentosFinanceirosDao = new LancamentosFinanceirosDao(); $where = "(id_tipo_conta <> 5 OR (id_tipo_conta =5 AND (flg_caixa_fechado = 0 OR flg_caixa_fechado IS NULL ) ) AND flg_tipo_lancamento = 'C' ) AND (flg_transferencia_conta = 0 OR \n\t\t\t flg_transferencia_conta IS NULL) AND id_empreendimento = {$id_empreendimento} AND dta_entrada between '{$now} 00:00:00' and '{$now} 23:59:59' AND flg_tipo_lancamento = 'C'\n\t\t\t order by dta_entrada asc"; $aux = $LancamentosFinanceirosDao->getLancamentos(null, null, array('cplSql' => $where)); $pagamentos = $aux ? getParcelas($aux['pagamentos']) : array(); usort($pagamentos, 'ordenaDta'); $pagByformaPagamento = array(); $totalRecebido = 0; $totalCredito = 0; foreach ($pagamentos as $key => $value) { if ($value['id_forma_pagamento'] == 6 || $value['id_forma_pagamento'] == 2) { $totalCredito += $value['valor_pagamento']; } $totalRecebido += $value['valor_pagamento']; if (!isset($pagByformaPagamento[$value['id_forma_pagamento']])) { $pagByformaPagamento[$value['id_forma_pagamento']] = array('descricao_forma_pagamento' => $value['descricao_forma_pagamento'], 'pagamentos' => array()); } $pagByformaPagamento[$value['id_forma_pagamento']]['pagamentos'][] = $value; }