Skip to content

Commit

Permalink
tweak(Sales Division) added missing eval dimension item cntrl
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmhh committed Jan 11, 2024
1 parent 05e030d commit 780024b
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions tine20/Sales/Controller/DivisionEvalDimensionItem.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php declare(strict_types=1);
/**
* DivisionEvalDimensionItem controller for Sales application
*
* @package Sales
* @subpackage Controller
* @license http://www.gnu.org/licenses/agpl.html AGPL Version 3
* @author Paul Mehrer <[email protected]>
* @copyright Copyright (c) 2024 Metaways Infosystems GmbH (http://www.metaways.de)
*
*/

/**
* DivisionEvalDimensionItem controller class for Sales application
*
* @package Sales
* @subpackage Controller
*/
class Sales_Controller_DivisionEvalDimensionItem extends Tinebase_Controller_Record_Abstract
{
use Tinebase_Controller_SingletonTrait;

/**
* the constructor
* don't use the constructor. use the singleton
*/
protected function __construct()
{
$this->_applicationName = Sales_Config::APP_NAME;
$this->_modelName = Sales_Model_DivisionEvalDimensionItem::class;
$this->_backend = new Tinebase_Backend_Sql([
Tinebase_Backend_Sql::MODEL_NAME => $this->_modelName,
Tinebase_Backend_Sql::TABLE_NAME => Sales_Model_DivisionEvalDimensionItem::TABLE_NAME,
Tinebase_Backend_Sql::MODLOG_ACTIVE => true,
]);

$this->_purgeRecords = false;
$this->_doContainerACLChecks = false;
}
}

0 comments on commit 780024b

Please sign in to comment.