Add cashdesk setup page
This commit is contained in:
parent
98c04fd275
commit
ddcd75e1f5
100
htdocs/admin/cashdesk.php
Normal file
100
htdocs/admin/cashdesk.php
Normal file
@ -0,0 +1,100 @@
|
||||
<?php
|
||||
/* Copyright (C) 2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
*
|
||||
* 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 2 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, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdocs/admin/cachdesk.php
|
||||
* \ingroup cashdesk
|
||||
* \brief Setup page for cashdesk module
|
||||
* \version $Id$
|
||||
*/
|
||||
|
||||
require("./pre.inc.php");
|
||||
require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php");
|
||||
|
||||
if (!$user->admin)
|
||||
accessforbidden();
|
||||
|
||||
$langs->load("admin");
|
||||
$langs->load("cashdesk");
|
||||
|
||||
|
||||
/*
|
||||
* Actions
|
||||
*/
|
||||
if ($_POST["action"] == 'set')
|
||||
{
|
||||
dolibarr_set_const($db,"CASHDESK_ID_THIRDPARTY",$_POST["socid"]);
|
||||
dolibarr_syslog("admin/cashdesk: level ".$_POST["level"]);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* View
|
||||
*/
|
||||
|
||||
$form=new Form($db);
|
||||
|
||||
llxHeader();
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print_fiche_titre($langs->trans("CashDeskSetup"),$linkback,'setup');
|
||||
print '<br>';
|
||||
|
||||
|
||||
// Mode
|
||||
$var=true;
|
||||
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
||||
print '<input type="hidden" name="action" value="set">';
|
||||
|
||||
print '<table class="noborder" width="100%">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td>';
|
||||
print '<td align="right"><input type="submit" class="button" value="'.$langs->trans("Modify").'"></td>';
|
||||
print "</tr>\n";
|
||||
$var=!$var;
|
||||
print '<tr '.$bc[$var].'><td width=\"50%\">'.$langs->trans("CashDeskThirdPartyForSell").'</td>';
|
||||
print '<td colspan="2">';
|
||||
print $form->select_societes($conf->global->CASHDESK_ID_THIRDPARTY,'socid','',1);
|
||||
print '</td></tr>';
|
||||
if ($conf->global->MAIN_MODULE_BANQUE)
|
||||
{
|
||||
$var=!$var;
|
||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("CashDeskBankAccountForSell").'</td>';
|
||||
print '<td colspan="2"><select class="flat" name="level">';
|
||||
//$conf->global->CASHDESK_ID_BANKACCOUNT
|
||||
print '</select>';
|
||||
print '</td></tr>';
|
||||
}
|
||||
if ($conf->global->MAIN_MODULE_STOCK)
|
||||
{
|
||||
$var=!$var;
|
||||
print '<tr '.$bc[$var].'><td>'.$langs->trans("CashDeskIdWareHouse").'</td>';
|
||||
print '<td colspan="2"><select class="flat" name="level">';
|
||||
//$conf->global->CASHDESK_ID_WAREHOUSE
|
||||
print '</select>';
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
|
||||
print '</table>';
|
||||
|
||||
print "</form>\n";
|
||||
|
||||
llxFooter('$Date$ - $Revision$');
|
||||
?>
|
||||
@ -101,7 +101,7 @@ if (! $defaultsyslogfile) $defaultsyslogfile='dolibarr.log';
|
||||
print_titre($langs->trans("SyslogOutput"));
|
||||
|
||||
// Mode
|
||||
print '<form action="syslog.php" method="post">';
|
||||
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
||||
print '<input type="hidden" name="action" value="set">';
|
||||
print '<table class="noborder" width="100%">';
|
||||
print '<tr class="liste_titre">';
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
# Language file - fr_FR - cashdesk
|
||||
CashDesk=Caisse
|
||||
CashDesk=Caisse
|
||||
|
||||
@ -70,8 +70,11 @@ class modCashDesk extends DolibarrModules
|
||||
// Relative path to module style sheet if exists. Example: '/mymodule/mycss.css'.
|
||||
$this->style_sheet = '';
|
||||
|
||||
// Config pages. Put here list of php page names stored in admmin directory used to setup module.
|
||||
$this->config_page_url = array("cashdesk.php");
|
||||
|
||||
// Dependencies
|
||||
$this->depends = array("modFacture","modProduit"); // List of modules id that must be enabled if this module is enabled
|
||||
$this->depends = array("modBanque","modFacture","modProduit","modStock"); // List of modules id that must be enabled if this module is enabled
|
||||
$this->requiredby = array(); // List of modules id to disable if this one is disabled
|
||||
$this->phpmin = array(4,1); // Minimum version of PHP required by module
|
||||
$this->need_dolibarr_version = array(2,4); // Minimum version of Dolibarr required by module
|
||||
|
||||
@ -951,3 +951,8 @@ AgendaSetup=Actions and agenda module setup
|
||||
PasswordTogetVCalExport=Key to authorize vcal export link
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=This module allows to add an icon after the phone number of Dolibarr contacts. A click on this icon, will call a serveur with a particular URL you define below. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
|
||||
##### CashDesk #####
|
||||
CashDeskSetup=Cash desk module setup
|
||||
CashDeskThirdPartyForSell=Generic third party to use for sells
|
||||
CashDeskBankAccountForSell=Cash account to use for sells
|
||||
CashDeskIdWareHouse=Datawarehous to user for sells
|
||||
|
||||
@ -957,4 +957,8 @@ AgendaSetup=Configuration du module actions et agenda
|
||||
PasswordTogetVCalExport=Clé pour autoriser export vcal
|
||||
##### ClickToDial #####
|
||||
ClickToDialDesc=Ce module permet d'ajouter un petit picto a coté des numéros de téléphones des contacts. Un clic sur ce picto provoque l'appel de l'URL définie dans ce paramétrage. Ceci permet de provoquer des appels à un serveur de téléphonie depuis Dolibarr qui peut alors composer le numéro sur un system SIP par exemple.
|
||||
|
||||
##### CashDesk #####
|
||||
CashDeskSetup=Configuration du module Caisse enregistreuse
|
||||
CashDeskThirdPartyForSell=Tiers générique à utiliser pour les ventes
|
||||
CashDeskBankAccountForSell=Compte caisse à utiliser pour les ventes
|
||||
CashDeskIdWareHouse=Entrepot à utiliser pour les ventes
|
||||
|
||||
Loading…
Reference in New Issue
Block a user