Skip to content
Snippets Groups Projects
Select Git revision
  • bac1f95e306ff2f5beb5f9d391ef58132b45d30a
  • 3.9 default
  • develop
  • 6.0
  • 5.0
  • 4.0
  • scrutinizer-patch-4
  • scrutinizer-patch-3
  • scrutinizer-patch-2
  • scrutinizer-patch-1
  • 3.7
  • 3.8
  • 3.6
  • 3.9_backported
  • 3.8_backported
  • 3.7_backported
  • 3.5
  • 3.6_backported
  • 3.5_backported
  • 3.4
  • 3.3_backported
  • 6.0.4
  • 6.0.3
  • 5.0.7
  • 6.0.2
  • 6.0.1
  • 5.0.6
  • 6.0.0
  • 5.0.5
  • 6.0.0-rc
  • 5.0.4
  • 6.0.0-beta
  • 5.0.3
  • 4.0.6
  • 5.0.2
  • 5.0.1
  • 4.0.5
  • 5.0.0
  • 4.0.4
  • 5.0.0-rc2
  • 5.0.0-rc1
41 results

card.php

Blame
  • card.php 11.59 KiB
    <?php
    /* Copyright (C) 2013-2014 Olivier Geffroy      <jeff@jeffinfo.com>
     * Copyright (C) 2013-2016 Alexandre Spangaro   <aspangaro.dolibarr@gmail.com>
     * Copyright (C) 2014	   Florian Henry		<florian.henry@open-concept.pro>
     *
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation; either version 3 of the License, or
     * (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program. If not, see <http://www.gnu.org/licenses/>.
     */
    
    /**
     * \file 		htdocs/accountancy/admin/card.php
     * \ingroup 	Advanced accountancy
     * \brief 		Card of accounting account
     */
    require '../../main.inc.php';
    
    // Class
    require_once DOL_DOCUMENT_ROOT . '/core/lib/accounting.lib.php';
    require_once DOL_DOCUMENT_ROOT . '/accountancy/class/accountingaccount.class.php';
    require_once DOL_DOCUMENT_ROOT . '/accountancy/class/html.formventilation.class.php';
    require_once DOL_DOCUMENT_ROOT . '/core/class/html.formaccounting.class.php';
    
    $error = 0;
    
    // Langs
    $langs->load("bills");
    $langs->load("accountancy");
    
    $mesg = '';
    $action = GETPOST('action');
    $id = GETPOST('id', 'int');
    $rowid = GETPOST('rowid', 'int');
    $cancel = GETPOST('cancel');
    
    // Security check
    
    
    $object = new AccountingAccount($db);
    
    // Action
    if ($action == 'add' && $user->rights->accounting->chartofaccount)
    {
    	if (! $cancel) {
    		$sql = 'SELECT pcg_version FROM ' . MAIN_DB_PREFIX . 'accounting_system WHERE rowid=' . $conf->global->CHARTOFACCOUNTS;
    		
    		dol_syslog('accountancy/admin/card.php:: $sql=' . $sql);
    		$result = $db->query($sql);
    		$obj = $db->fetch_object($result);
    
    		// Clean code
    
    		// To manage zero or not at the end of the accounting account
    		if($conf->global->ACCOUNTING_MANAGE_ZERO == 1)
    		{
    			$account_number = GETPOST('account_number');
    		}
    		else
    		{
    			$account_number = clean_account(GETPOST('account_number'));
    		}
    
    		if (GETPOST('account_parent') <= 0) {
    			$account_parent = 0;
    		} else {
    			$account_parent = GETPOST('account_parent','int');
    		}
    		
    		$object->fk_pcg_version = $obj->pcg_version;
    		$object->pcg_type = GETPOST('pcg_type');
    		$object->pcg_subtype = GETPOST('pcg_subtype');
    		$object->account_number = $account_number;
    		$object->account_parent = $account_parent;
    		$object->account_category = GETPOST('account_category');
    		$object->label = GETPOST('label', 'alpha');
    		$object->active = 1;
    		
    		$res = $object->create($user);
    		
    		if ($res == - 3) {
    			$error = 1;
    			$action = "create";
    		}
    		if ($res == - 4) {
    			$error = 2;
    			$action = "create";
    		}
    	}
    	header("Location: account.php");
    	exit;
    } else if ($action == 'edit' && $user->rights->accounting->chartofaccount) {
    	if (! $cancel) {
    		$result = $object->fetch($id);
    		
    		$sql = 'SELECT pcg_version FROM ' . MAIN_DB_PREFIX . 'accounting_system WHERE rowid=' . $conf->global->CHARTOFACCOUNTS;
    		
    		dol_syslog('accountancy/admin/card.php:: $sql=' . $sql);
    		$result2 = $db->query($sql);
    		$obj = $db->fetch_object($result2);
    
    		// Clean code
    
    		// To manage zero or not at the end of the accounting account
    		if($conf->global->ACCOUNTING_MANAGE_ZERO == 1)
    		{
    			$account_number = GETPOST('account_number');
    		}
    		else
    		{
    			$account_number = clean_account(GETPOST('account_number'));
    		}
    
    		if (GETPOST('account_parent') <= 0) {
    			$account_parent = 0;
    		} else {
    			$account_parent = GETPOST('account_parent','int');
    		}
    
    		$object->fk_pcg_version = $obj->pcg_version;
    		$object->pcg_type = GETPOST('pcg_type');
    		$object->pcg_subtype = GETPOST('pcg_subtype');
    		$object->account_number = $account_number;
    		$object->account_parent = $account_parent;
    		$object->account_category = GETPOST('account_category');
    		$object->label = GETPOST('label', 'alpha');
    		
    		$result = $object->update($user);
    		
    		if ($result > 0) {
    			header("Location: " . $_SERVER["PHP_SELF"] . "?id=" . $id);
    			exit();
    		} else {
    			$mesg = $object->error;
    		}
    	} else {
    		header("Location: " . $_SERVER["PHP_SELF"] . "?id=" . $id);
    		exit();
    	}
    } else if ($action == 'delete' && $user->rights->accounting->chartofaccount) {
    	$result = $object->fetch($id);
    	
    	if (! empty($object->id)) {
    		$result = $object->delete($user);
    		
    		if ($result > 0) {
    			header("Location: account.php");
    			exit;
    		}
    	}
    	
    	if ($result < 0) {
    		setEventMessages($object->error, $object->errors, 'errors');
    	}
    }
    
    /*
     * View
     */
    $title = $langs->trans('AccountAccounting') ." - ". $langs->trans('Card');
    $helpurl = '';
    llxheader('', $title, $helpurl);
    
    $form = new Form($db);
    $htmlacc = new FormVentilation($db);
    $formaccounting = new FormAccounting($db);
    
    // Create mode
    if ($action == 'create') {
    	print load_fiche_titre($langs->trans('NewAccount'));
    	
    	print '<form name="add" action="' . $_SERVER["PHP_SELF"] . '" method="POST">' . "\n";
    	print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
    	print '<input type="hidden" name="action" value="add">';
    	
    	dol_fiche_head();
    	
    	print '<table class="border" width="100%">';
    
    	// Account number
    	print '<tr><td class="titlefieldcreate"><span class="fieldrequired">' . $langs->trans("AccountNumber") . '</span></td>';
    	print '<td><input name="account_number" size="30" value="' . $object->account_number . '"</td></tr>';
    
    	// Label
    	print '<tr><td><span class="fieldrequired">' . $langs->trans("Label") . '</span></td>';
    	print '<td><input name="label" size="70" value="' . $object->label . '"</td></tr>';
    
    	// Account parent
    	print '<tr><td>' . $langs->trans("Accountparent") . '</td>';
    	print '<td>';
    	print $htmlacc->select_account($object->account_parent, 'account_parent', 1);
    	print '</td></tr>';
    
    	// Category
    	print '<tr><td>' . $langs->trans("AccountingCategory") . '</td>';
    	print '<td>';
    	$formaccounting->select_accounting_category($object->account_category, 'account_category', 1);
    	print '</td></tr>';
    
    	// Chart of accounts type
    	print '<tr><td>' . $langs->trans("Pcgtype") . '</td>';
    	print '<td>';
    	print $htmlacc->select_pcgtype($object->pcg_type, 'pcg_type');
    	print '</td></tr>';
    
    	// Chart of acounts subtype
    	print '<tr><td>' . $langs->trans("Pcgsubtype") . '</td>';
    	print '<td>';
    	print $htmlacc->select_pcgsubtype($object->pcg_subtype, 'pcg_subtype');
    	print '</td></tr>';
    	
    	print '</table>';
    	
    	dol_fiche_end();
    	
    	print '<div class="center">';
    	print '<input class="button" type="submit" value="' . $langs->trans("Save") . '">';
    	print '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
    	print '<input class="button" type="submit" name="cancel" value="' . $langs->trans("Cancel") . '">';
    	print '</div>';
    	
    	print '</form>';
    } else if ($id) {
    	$result = $object->fetch($id);
    	
    	if ($result > 0) {
    		dol_htmloutput_mesg($mesg);
    		
    		$head = accounting_prepare_head($object);
    		
    		// Edit mode
    		if ($action == 'update') 
    		{
    			dol_fiche_head($head, 'card', $langs->trans('AccountAccounting'), 0, 'billr');
    			
    			print '<form name="update" action="' . $_SERVER["PHP_SELF"] . '" method="POST">' . "\n";
    			print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
    			print '<input type="hidden" name="action" value="edit">';
    			print '<input type="hidden" name="id" value="' . $id . '">';
    			
    			print '<table class="border" width="100%">';
    			
    			// Account number
    			print '<tr><td class="titlefieldcreate"><span class="fieldrequired">' . $langs->trans("AccountNumber") . '</span></td>';
    			print '<td><input name="account_number" size="30" value="' . $object->account_number . '"</td></tr>';
    			
    			// Label
    			print '<tr><td><span class="fieldrequired">' . $langs->trans("Label") . '</span></td>';
    			print '<td><input name="label" size="70" value="' . $object->label . '"</td></tr>';
    			
    			// Account parent
    			print '<tr><td>' . $langs->trans("Accountparent") . '</td>';
    			print '<td>';
    			print $htmlacc->select_account($object->account_parent, 'account_parent', 1);
    			print '</td></tr>';
    
    			// Category
                print '<tr><td>'.$langs->trans("AccountingCategory").'</td>';
    			print '<td>';
                $formaccounting->select_accounting_category($object->account_category, 'account_category', 1);
                print '</td></tr>';
    
    			// Chart of accounts type
    			print '<tr><td>' . $langs->trans("Pcgtype") . '</td>';
    			print '<td>';
    			print $htmlacc->select_pcgtype($object->pcg_type, 'pcg_type');
    			print '</td></tr>';
    
    			// Chart of accounts subtype
    			print '<tr><td>' . $langs->trans("Pcgsubtype") . '</td>';
    			print '<td>';
    			print $htmlacc->select_pcgsubtype($object->pcg_subtype, 'pcg_subtype');
    			print '</td></tr>';
    			
    			print '</table>';
    			
    			dol_fiche_end();
    			
    			print '<div class="center">';
    			print '<input type="submit" class="button" value="' . $langs->trans("Save") . '">';
    			print '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
    			print '<input type="submit" name="cancel" class="button" value="' . $langs->trans("Cancel") . '">';
    			print '</div>';
    			
    			print '</form>';
    		} else {
    			
    			// View mode
    			$linkback = '<a href="../admin/account.php">' . $langs->trans("BackToChartofaccounts") . '</a>';
    			
    			dol_fiche_head($head, 'card', $langs->trans('AccountAccounting'), 0, 'billr');
    			
    			print '<table class="border" width="100%">';
    			
    			// Account number
    			print '<tr><td class="titlefield">' . $langs->trans("AccountNumber") . '</td>';
    			print '<td>' . $object->account_number . '</td>';
    			print '<td align="right" width="25%">' . $linkback . '</td></tr>';
    
    			// Label
    			print '<tr><td>' . $langs->trans("Label") . '</td>';
    			print '<td colspan="2">' . $object->label . '</td></tr>';
    
    			// Account parent
    			$accp = new AccountingAccount($db);
    			if (! empty($object->account_parent)) {
    				$accp->fetch($object->account_parent, '');
    			}
    			print '<tr><td>' . $langs->trans("Accountparent") . '</td>';
    			print '<td colspan="2">' . $accp->account_number . ' - ' . $accp->label . '</td></tr>';
    
    			// Category
    			print "<tr><td>".$langs->trans("AccountingCategory")."</td><td colspan='2'>".$object->account_category_label."</td>";
    
    			// Chart of accounts type
    			print '<tr><td>' . $langs->trans("Pcgtype") . '</td>';
    			print '<td colspan="2">' . $object->pcg_type . '</td></tr>';
    
    			// Chart of accounts subtype
    			print '<tr><td>' . $langs->trans("Pcgsubtype") . '</td>';
    			print '<td colspan="2">' . $object->pcg_subtype . '</td></tr>';
    
    			// Active
    			print '<tr><td>' . $langs->trans("Status") . '</td>';
    			print '<td colspan="2">';
    			print $object->getLibStatut(4);
    			/*if (empty($object->active)) {
    				print img_picto($langs->trans("Disabled"), 'switch_off');
    			} else {
    				print img_picto($langs->trans("Activated"), 'switch_on');
    			}*/
    			
    			print '</td></tr>';
    			
    			print '</table>';
    			
    			dol_fiche_end();
    			
    			/*
    			 * Actions buttons
    			 */
    			
    			print '<div class="tabsAction">';
    			
    			if (! empty($user->rights->accounting->chartofaccount)) {
    				print '<a class="butAction" href="' . $_SERVER["PHP_SELF"] . '?action=update&id=' . $id . '">' . $langs->trans('Modify') . '</a>';
    			} else {
    				print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag($langs->trans("NotAllowed")) . '">' . $langs->trans('Modify') . '</a>';
    			}
    			
    			if (! empty($user->rights->accounting->chartofaccount)) {
    				print '<a class="butActionDelete" href="' . $_SERVER["PHP_SELF"] . '?action=delete&id=' . $id . '">' . $langs->trans('Delete') . '</a>';
    			} else {
    				print '<a class="butActionRefused" href="#" title="' . dol_escape_htmltag($langs->trans("NotAllowed")) . '">' . $langs->trans('Delete') . '</a>';
    			}
    			
    			print '</div>';
    		}
    	} else {
    		dol_print_error($db);
    	}
    }
    
    llxFooter();
    
    $db->close();