add column document_type to template table

This commit is contained in:
iIronside
2022-01-14 15:39:09 +03:00
parent e09f38f24b
commit c1ff229aa7
8 changed files with 528 additions and 5 deletions

View File

@ -0,0 +1,31 @@
<?php
namespace common\helpers;
use Exception;
use yii\helpers\ArrayHelper;
class TemplateDocumentTypeHelper
{
const STATUS_ACT = 0;
const STATUS_CONTRACT = 1;
public static function getDocumentTypeList() :array
{
return [
self::STATUS_ACT => 'Акт',
self::STATUS_CONTRACT => 'Договор'
];
}
/**
* @throws Exception
*/
public static function getDocumentType($document_type)
{
if (!$document_type) {
return ArrayHelper::getValue(self::getDocumentTypeList(), $document_type);
}
return $document_type;
}
}