Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15446 | Rev 16770 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15403 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\JobDescription;
6
 
7
use Laminas\Form\Form;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Mapper\JobDescriptionMapper;
11
use LeadersLinked\Mapper\JobDescriptionSubordinateMapper;
12
 
13
class JobDescriptionForm extends Form
14
{
15
    /**
16
     *
17
     * @param AdapterInterface $adapter
18
     * @param int $company_id
19
     * @param int $id
20
     */
21
    public function __construct($adapter, $company_id, $job_description_id = 0)
22
    {
23
        parent::__construct();
24
        $this->setInputFilter(new JobDescriptionFilter($adapter));
25
 
26
 
27
 
28
        $this->add([
29
            'name' => 'subordinates',
30
            'type' => \Laminas\Form\Element\Hidden::class,
31
            'attributes' => [
32
                'id'    => 'subordinates',
33
            ]
34
        ]);
35
 
36
 
37
        $this->add([
38
            'name' => 'competencies',
39
            'type' => \Laminas\Form\Element\Hidden::class,
40
            'attributes' => [
41
                'id'    => 'competencies',
42
            ]
43
        ]);
44
 
45
        $this->add([
46
            'name' => 'name',
47
            'type' => \Laminas\Form\Element\Text::class,
48
             'attributes' => [
49
                'maxlength' 	=> 128,
50
                'id' 			=> 'name',
51
            ]
52
         ]);
53
 
54
 
55
        $this->add([
56
            'name' => 'job_description_id_boss',
57
            'type' => \Laminas\Form\Element\Select::class,
58
            'options' => [
59
                'empty_option' => 'LABEL_NA',
60
                'value_options' => $this->optionsJobDescriptions($adapter, $company_id, $job_description_id ),
61
            ],
62
            'attributes' => [
63
                'id' => 'job_description_id_boss',
64
            ]
65
        ]);
66
 
67
        $this->add([
68
            'name' => 'functions',
69
            'type' => \Laminas\Form\Element\Textarea::class,
70
            'attributes' => [
15446 efrain 71
                'maxlength' 	=> 1024,
15403 efrain 72
                'id'    => 'functions',
15446 efrain 73
                'rows' => 10
15403 efrain 74
            ]
75
        ]);
76
 
77
 
78
 
79
        $this->add([
80
            'name' => 'objectives',
81
            'type' => \Laminas\Form\Element\Textarea::class,
82
            'attributes' => [
15446 efrain 83
                'maxlength' 	=> 1024,
15403 efrain 84
                'id'    => 'objectives',
15446 efrain 85
                'rows' => 10
15403 efrain 86
            ]
87
        ]);
88
 
89
 
90
 
91
 
92
 
93
        $this->add([
94
            'name' => 'status',
95
            'type' => \Laminas\Form\Element\Checkbox::class,
96
            'attributes' => [
97
                'id' 			=> 'status',
98
            ],
99
            'options' => [
16766 efrain 100
                'use_hidden_element' => false,
15403 efrain 101
                'unchecked_value' => \LeadersLinked\Model\JobDescription::STATUS_INACTIVE,
102
                'checked_value'=> \LeadersLinked\Model\JobDescription::STATUS_ACTIVE,
103
            ]
104
        ]);
105
 
106
 
107
    }
108
 
109
    /**
110
     *
111
     * @param AdapterInterface $adapter
112
     * @param int $company_id
113
     * @param int $id
114
     * @param LoggerInterface $logger
115
     * @return array
116
     */
117
    private function optionsJobDescriptions($adapter, $company_id, $job_description_id )
118
    {
119
 
120
        $subordinates = [];
121
 
122
        if($job_description_id) {
123
 
124
            $jobDescriptionSubordinateMapper = JobDescriptionSubordinateMapper::getInstance($adapter);
125
            $records = $jobDescriptionSubordinateMapper->fetchAllByJobDescriptionIdTopLevel($job_description_id);
126
            foreach($records as $record)
127
            {
128
                array_push($subordinates, $record->job_description_id_low_level);
129
            }
130
 
131
        }
132
 
133
 
134
        $jobDescriptionMapper = JobDescriptionMapper::getInstance($adapter);
135
        $jobsDescription = $jobDescriptionMapper->fetchAllActiveByCompanyIdWhereIdNotEqual($company_id, $job_description_id);
136
 
137
        $options = [];
138
        foreach($jobsDescription as $jobDescription)
139
        {
140
            if(in_array($jobDescription->id, $subordinates)) {
141
                continue;
142
            }
143
 
144
 
145
            $options[$jobDescription->uuid] = $jobDescription->name;
146
        }
147
 
148
        return $options;
149
    }
150
 
151
 
152
}