| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/vilagran/application/controllers/ |
Upload File : |
<?php
// *************************************************************************
// * *
// * iBilling - Accounting, Billing Software *
// * Copyright (c) Sadia Sharmin. All Rights Reserved *
// * *
// *************************************************************************
// * *
// * Email: sadiasharmin3139@gmail.com *
// * Website: http://www.sadiasharmin.com *
// * *
// *************************************************************************
// * *
// * This software is furnished under a license and may be used and copied *
// * only in accordance with the terms of such license and with the *
// * inclusion of the above copyright notice. *
// * If you Purchased from Codecanyon, Please read the full License from *
// * here- http://codecanyon.net/licenses/standard *
// * *
// *************************************************************************
$ui->assign('_application_menu', 'invoices');
$ui->assign('_st', $_L['Invoice']);
$ui->assign('_title', $_L['Accounts'].'- '. $config['CompanyName']);
$action = $routes['1'];
$id = $routes['2'];
$d = ORM::for_table('sys_invoices')->find_one($id);
// verifico se é pra imprimir os valores na fatura
$print_value =true;
if(isset($routes[4]) && $routes[4] == 'hide')
{
$print_value = false;
}
if($d){
$token = $routes['3'];
$token = str_replace('token_','',$token);
$vtoken = $d['vtoken'];
if($token != $vtoken){
echo 'Sorry Token does not match!';
exit;
}
//find all activity for this user
$items = ORM::for_table('sys_invoiceitems')->where('invoiceid',$id)->order_by_asc('id')->find_many();
$trs_c = ORM::for_table('sys_transactions')->where('iid', $id)->count();
$trs = ORM::for_table('sys_transactions')->where('iid', $id)->order_by_desc('id')->find_many();
//find the user
$a = ORM::for_table('crm_accounts')->find_one($d['userid']);
//busca os endereços para o contato
if ($a->billing_address == 'Y') {
$account_address = ORM::for_table('crm_accounts_address')->where('crm_account_id', $d['userid'])->where('type_address', 'billing_address')->find_many();
$account_address = $account_address[0];
} else {
$account_address = ORM::for_table('crm_accounts_address')->where('crm_account_id', $d['userid'])->where('type_address', 'tax_address')->find_many();
$account_address = $account_address[0];
}
if (count($account_address) > 0) {
if (!empty($account_address->state_id)) {
$stateContact = ORM::for_table('state')->find_one($account_address->state_id);
}
if (!empty($account_address->city_id)) {
$cityContact = ORM::for_table('city')->find_one($account_address->city_id);
}
}
$i_credit = $d['credit'];
$i_due = '0.00';
$i_total = $d['total'];
if($d['credit'] != '0.00'){
$i_due = $i_total-$i_credit;
}
else{
$i_due = $d['total'];
}
// $i_due = number_format($i_due,2,$config['dec_point'],$config['thousands_sep']);
$cf = ORM::for_table('crm_customfields')->where('showinvoice','Yes')->order_by_asc('id')->find_many();
require 'application/lib/invoices/render.php';
}
else{
r2(U . 'customers/list', 'e', $_L['Account_Not_Found']);
}