You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

78 lines
2.1 KiB

<?php
/**
* @package tikiwiki
*/
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
/***
*
* @var \TikiAccessLib $access
*
* @var \AccountingLib $accountinglib
*
*
* @var \Smarty_Tiki $smarty
*
* Define the current section
* @var string $section
*/
$section = 'accounting';
require_once('tiki-setup.php');
// Feature available?
if ($prefs['feature_accounting'] != 'y') {
$smarty->assign('msg', tra("This feature is disabled") . ": feature_accounting");
$smarty->assign('required_preferences', ['feature_accounting']);
$smarty->display("error.tpl");
die;
}
if (! isset($_REQUEST['bookId'])) {
$smarty->assign('msg', tra("Missing book id"));
$smarty->display("error.tpl");
die;
}
$bookId = $_REQUEST['bookId'];
$smarty->assign('bookId', $bookId);
$globalperms = Perms::get();
$objectperms = Perms::get([ 'type' => 'accounting book', 'object' => $bookId ]);
if (! ($globalperms->acct_view or $objectperms->acct_view)) {
$smarty->assign('msg', tra("You do not have the right view this page"));
$smarty->display("error.tpl");
die;
}
$accountinglib = TikiLib::lib('accounting');
$book = $accountinglib->getBook($bookId);
$smarty->assign('book', $book);
$accounts = $accountinglib->getExtendedAccounts($bookId, true);
$smarty->assign('accounts', $accounts);
if (! isset($_REQUEST['journalLimit'])) {
$_REQUEST['journalLimit'] = -25;
}
$journal = $accountinglib->getJournal($bookId, '%', '`journalId` DESC', $_REQUEST['journalLimit']);
$smarty->assign('journal', $journal);
if ($globalperms->acct_book or $objectperms->acct_book) {
$smarty->assign('canBook', true);
} else {
$smarty->assign('canBook', false);
}
if ($globalperms->acct_book_stack or $objectperms->acct_book_stack) {
$smarty->assign('canStack', true);
} else {
$smarty->assign('canStack', false);
}
$smarty->assign('mid', 'tiki-accounting.tpl');
$smarty->display("tiki.tpl");