dolibarr  20.0.0-beta
note.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2007-2022 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
24 // Load Dolibarr environment
25 require '../../main.inc.php';
26 require_once DOL_DOCUMENT_ROOT.'/compta/sociales/class/chargesociales.class.php';
27 require_once DOL_DOCUMENT_ROOT.'/core/lib/tax.lib.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
29 if (isModEnabled('project')) {
30  include_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
31  include_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
32 }
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array('compta', 'bills'));
36 
37 // Get parameters
38 $id = GETPOSTINT('id');
39 $ref = GETPOST('ref', 'alpha');
40 $action = GETPOST('action', 'aZ09');
41 $cancel = GETPOST('cancel', 'aZ09');
42 $backtopage = GETPOST('backtopage', 'alpha');
43 
44 $object = new ChargeSociales($db);
45 if ($id > 0) {
46  $object->fetch($id);
47 }
48 
49 // Security check
50 $socid = GETPOSTINT('socid');
51 if ($user->socid) {
52  $socid = $user->socid;
53 }
54 $result = restrictedArea($user, 'tax', $object->id, 'chargesociales', 'charges');
55 
56 $permissiontoread = $user->hasRight('tax', 'charges', 'lire');
57 $permissiontoadd = $user->hasRight('tax', 'charges', 'creer');
58 $permissionnote = $user->hasRight('tax', 'charges', 'creer'); // Used by the include of actions_setnotes.inc.php
59 
60 
61 /*
62  * Actions
63  */
64 
65 $parameters = array();
66 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
67 if ($reshook < 0) {
68  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
69 }
70 if (empty($reshook)) {
71  include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
72 }
73 
74 
75 /*
76  * View
77  */
78 
79 $form = new Form($db);
80 
81 $title = $langs->trans("SocialContribution").' - '.$langs->trans("Note");
82 $help_url = 'EN:Module_Taxes_and_social_contributions|FR:Module Taxes et dividendes|ES:M&oacute;dulo Impuestos y cargas sociales (IVA, impuestos)';
83 llxHeader('', $title, $help_url);
84 
85 if ($id > 0 || !empty($ref)) {
86  $object->fetch_thirdparty();
87 
88  $head = tax_prepare_head($object);
89 
90  print dol_get_fiche_head($head, 'note', $langs->trans("SocialContribution"), -1, $object->picto);
91 
92  $morehtmlref = '<div class="refidno">';
93  // Label of social contribution
94  $morehtmlref .= $form->editfieldkey("Label", 'lib', $object->label, $object, $user->hasRight('tax', 'charges', 'creer'), 'string', '', 0, 1);
95  $morehtmlref .= $form->editfieldval("Label", 'lib', $object->label, $object, $user->hasRight('tax', 'charges', 'creer'), 'string', '', null, null, '', 1);
96  // Project
97  if (isModEnabled('project')) {
98  $langs->load("projects");
99  if (!empty($object->fk_project)) {
100  $morehtmlref .= '<br>';
101  $proj = new Project($db);
102  $proj->fetch($object->fk_project);
103  $morehtmlref .= $proj->getNomUrl(1);
104  if ($proj->title) {
105  $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
106  }
107  } else {
108  $morehtmlref .= '';
109  }
110  }
111  $morehtmlref .= '</div>';
112 
113  // Object card
114  // ------------------------------------------------------------
115  $linkback = '<a href="'.DOL_URL_ROOT.'/compta/sociales/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
116 
117  //$object->totalpaid = $totalpaid; // To give a chance to dol_banner_tab to use already paid amount to show correct status
118 
119  $morehtmlstatus = '';
120 
121  dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref, '', 0, '', $morehtmlstatus);
122 
123 
124  print '<div class="fichecenter">';
125  print '<div class="underbanner clearboth"></div>';
126 
127 
128  $cssclass = "titlefield";
129  include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
130 
131  print '</div>';
132 
133  print dol_get_fiche_end();
134 }
135 
136 // End of page
137 llxFooter();
138 $db->close();
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:55
llxFooter()
Empty footer.
Definition: wrapper.php:69
Class for managing the social charges.
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
isModEnabled($module)
Is Dolibarr module enabled.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
tax_prepare_head(ChargeSociales $object)
Prepare array with list of tabs.
Definition: tax.lib.php:38