2 // +----------------------------------------------------------------------+
 
   3 // | Anuko Time Tracker
 
   4 // +----------------------------------------------------------------------+
 
   5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
 
   6 // +----------------------------------------------------------------------+
 
   7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
 
   8 // | by anyone for any purpose, and freely redistributed alone or in
 
   9 // | combination with other software, provided that the license is obeyed.
 
  11 // | There are only two ways to violate the license:
 
  13 // | 1. To redistribute this code in source form, with the copyright
 
  14 // |    notice or license removed or altered. (Distributing in compiled
 
  15 // |    forms without embedded copyright notices is permitted).
 
  17 // | 2. To redistribute modified versions of this code in *any* form
 
  18 // |    that bears insufficient indications that the modifications are
 
  19 // |    not the work of the original author(s).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 require_once('initialize.php');
 
  31 import('ttTeamHelper');
 
  32 import('ttInvoiceHelper');
 
  35 if (!ttAccessCheck(right_manage_team) || !$user->isPluginEnabled('iv')) {
 
  36   header('Location: access_denied.php');
 
  40 if ($request->isPost()) {
 
  41   $cl_date = $request->getParameter('date');
 
  42   $cl_client = $request->getParameter('client');
 
  43   $cl_project = $request->getParameter('project');
 
  44   $cl_number = trim($request->getParameter('number'));
 
  45   $cl_start = $request->getParameter('start');
 
  46   $cl_finish = $request->getParameter('finish');
 
  49 $form = new Form('invoiceForm');
 
  50 $form->addInput(array('type'=>'datefield','name'=>'date','size'=>'20','value'=>$cl_date));
 
  52 // Dropdown for clients if the clients plugin is enabled.
 
  53 if ($user->isPluginEnabled('cl')) {
 
  54   $clients = ttTeamHelper::getActiveClients($user->team_id);
 
  55   $form->addInput(array('type'=>'combobox','name'=>'client','style'=>'width: 250px;','data'=>$clients,'datakeys'=>array('id','name'),'value'=>$cl_client,'empty'=>array(''=>$i18n->getKey('dropdown.select'))));
 
  57 // Dropdown for projects.
 
  58 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
 
  59   $projects = ttTeamHelper::getActiveProjects($user->team_id);
 
  60   $form->addInput(array('type'=>'combobox','name'=>'project','style'=>'width: 250px;','data'=>$projects,'datakeys'=>array('id','name'),'value'=>$cl_project,'empty'=>array(''=>$i18n->getKey('dropdown.all'))));
 
  62 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'number','style'=>'width: 250px;','value'=>$cl_number));
 
  63 $form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'start','value'=>$cl_start));
 
  64 $form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'finish','value'=>$cl_finish));
 
  65 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.add')));
 
  67 if ($request->isPost()) {
 
  68   // Validate user input.
 
  69   if (!ttValidString($cl_number)) $err->add($i18n->getKey('error.field'), $i18n->getKey('form.invoice.number'));
 
  70   if (!ttValidDate($cl_date)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.date'));
 
  71   if (!$cl_client) $err->add($i18n->getKey('error.client'));
 
  72   if (!ttValidDate($cl_start)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.start_date'));
 
  73   if (!ttValidDate($cl_finish)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.end_date'));
 
  75   $fields = array('date'=>$cl_date,'name'=>$cl_number,'client_id'=>$cl_client,'project_id'=>$cl_project,'start_date'=>$cl_start,'end_date'=>$cl_finish);
 
  77     if (ttInvoiceHelper::getInvoiceByName($cl_number))
 
  78       $err->add($i18n->getKey('error.invoice_exists'));
 
  80     if (!ttInvoiceHelper::invoiceableItemsExist($fields))
 
  81       $err->add($i18n->getKey('error.no_invoiceable_items'));
 
  85     // Now we can go ahead and create our invoice.
 
  86     if (ttInvoiceHelper::createInvoice($fields)) {
 
  87       header('Location: invoices.php');
 
  90       $err->add($i18n->getKey('error.db'));
 
  95 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 
  96 $smarty->assign('onload', 'onLoad="document.invoiceForm.number.focus()"');
 
  97 $smarty->assign('title', $i18n->getKey('title.add_invoice'));
 
  98 $smarty->assign('content_page_name', 'invoice_add.tpl');
 
  99 $smarty->display('index.tpl');