This repository has been archived by the owner on Sep 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tiki-accounting_cancel.php
60 lines (51 loc) · 1.69 KB
/
tiki-accounting_cancel.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2015 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$
$section = 'accounting';
require_once ('tiki-setup.php');
require_once ('lib/accounting/accountinglib.php');
// Feature available?
if ($prefs['feature_accounting'] !='y') {
$smarty->assign('msg', tra("This feature is disabled") . ": 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);
if (!isset($_REQUEST['journalId'])) {
$smarty->assign('msg', tra("Missing journal id"));
$smarty->display("error.tpl");
die;
}
$journalId=$_REQUEST['journalId'];
$smarty->assign('journalId', $journalId);
$globalperms = Perms::get();
$objectperms = Perms::get(array( 'type' => 'accounting book', 'object' => $bookId ));
if (!($globalperms->acct_view or $objectperms->acct_book)) {
$smarty->assign('msg', tra("You do not have the right to cancel transactions"));
$smarty->display("error.tpl");
die;
}
$book=$accountinglib->getBook($bookId);
$smarty->assign('book', $book);
$entry=$accountinglib->getTransaction($bookId, $journalId);
if ($entry===false) {
$smarty->assign('msg', tra("Error retrieving data from journal"));
$smarty->display("error.tpl");
die;
}
$smarty->assign('entry', $entry);
$accountinglib->cancelTransaction($bookId, $journalId);
$smarty->assign('mid', 'tiki-accounting_cancel.tpl');
$smarty->display("tiki.tpl");