Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16766 | Rev 16784 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16766 Rev 16770
Línea 49... Línea 49...
49
                'maxlength' 	=> 128,
49
                'maxlength' 	=> 128,
50
                'id' 			=> 'name',
50
                'id' 			=> 'name',
51
            ]
51
            ]
52
         ]);
52
         ]);
Línea 53... Línea -...
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
        
53
 
67
        $this->add([
54
        $this->add([
68
            'name' => 'functions',
55
            'name' => 'functions',
69
            'type' => \Laminas\Form\Element\Textarea::class,
56
            'type' => \Laminas\Form\Element\Textarea::class,
70
            'attributes' => [
57
            'attributes' => [
71
                'maxlength' 	=> 1024,
58
                'maxlength' 	=> 1024,
72
                'id'    => 'functions',
59
                'id'    => 'functions',
73
                'rows' => 10
60
                'rows' => 10
74
            ]
61
            ]
75
        ]);
-
 
76
 
-
 
Línea 77... Línea 62...
77
 
62
        ]);
78
        
63
        
79
        $this->add([
64
        $this->add([
80
            'name' => 'objectives',
65
            'name' => 'objectives',
Línea 84... Línea 69...
84
                'id'    => 'objectives',
69
                'id'    => 'objectives',
85
                'rows' => 10
70
                'rows' => 10
86
            ]
71
            ]
87
        ]);
72
        ]);
Línea 88... Línea -...
88
        
-
 
89
        
-
 
90
 
-
 
91
        
-
 
92
        
73
        
93
        $this->add([
74
        $this->add([
94
            'name' => 'status',
75
            'name' => 'status',
95
            'type' => \Laminas\Form\Element\Checkbox::class,
76
            'type' => \Laminas\Form\Element\Checkbox::class,
96
            'attributes' => [
77
            'attributes' => [
Línea 103... Línea 84...
103
            ]
84
            ]
104
        ]);
85
        ]);
Línea 105... Línea 86...
105
        
86
        
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
    
87
        
151
    
88
    }