<?php // archive-ipq-co.narod.ru class Worker { private static $percents = [ 1, 1.25, 1.5 ]; public $rang; // Ранг сотрудника 1-3 public $dicrementcoffe; // выжрано кофе public $stavka; // начальная ставка public $mainingDocument; // Произвел документов public $endStavka; // окончательная ставка, вычисляется через функцию EndStavka public $boss = false; // является ли сотрудник начальником public function __construct($rang, $stavka, $boss) { $this->rang = $rang; $this->stavka = $stavka; $this->boss = $boss; $this->dicrementcoffe = 0; $this->endStavka = $stavka * Worker::$percents[$this->rang]; if ($this->boss) { $this->endStavka *= $percents[2]; } return $endStavka; } } class Menedger extends Worker { public $dicrementcoffe = 20; public $stavka = 500; public $mainingDocument = 200; } class Market extends Worker { public $dicrementcoffe = 15; public $stavka = 400; public $mainingDocument = 150; } class Engeener extends Worker { public $dicrementcoffe = 5; public $stavka = 200; public $mainingDocument = 50; } class Analitic extends Worker { public $dicrementcoffe = 50; public $stavka = 800; public $mainingDocument = 5; } class Departament // возвращает массив с работниками в каждом департаменте { public $name; public $workers; public $menedgerA; //1 rang public $menedgerB; //2 rang public $menedgerC; //3 rang public $menedgerBoss; //Руководитель // инженеры public $engeenerA; //1 rang public $engeenerB; //2 rang public $engeenerC; //3 rang public $engeenerBoss; //Руководитель //маркетологи public $marketA;//1 rang public $marketB;//2 rang public $marketC;//3 rang public $marketBoss;//Руководитель //аналитики public $analiticA; //1 rang public $analiticB; //2 rang public $analiticC; //3 rang public $analiticBoss; public function __construct(){$this->workers=$this->quantityWorker();} public function quantityWorker () // Возвращает массив с сотрудниками { for ($i=0; $i<$this->menedgerA; $i++) // заносим в массив менеджеров 1й ранг { $w = new Menedger($this->rang, $this->stavka, $this->boss); $w->rang = 1; $workers[] = $w; } for ($i=0; $i<$this->menedgerB; $i++) // заносим в массив менеджеров 2й ранг { $w = new Menedger($this->rang, $this->stavka, $this->boss); $w->rang = 2; $workers[] = $w; }for ($i=0; $i<$this->menedgerA; $i++) // заносим в массив менеджеров 1й ранг { $w = new Menedger($this->rang, $this->stavka, $this->boss); $w->rang = 1; $workers[] = $w; }for ($i=0; $i<$this->menedgerB; $i++) // заносим в массив менеджеров 3й ранг { $w = new Menedger($this->rang, $this->stavka, $this->boss); $w->rang = 3; $workers[] = $w; } for ($i=0; $i<$this->menedgerBoss; $i++) // заносим в массив менеджеров руководителей { $w = new Menedger($this->rang, $this->stavka, $this->boss); $w->rang = 1; $w->boss = true; $workers[] = $w; }for ($i=0; $i<$this->engeenerA; $i++) // заносим в массив инженеров 1й ранг { $w = new Engeener($this->rang, $this->stavka, $this->boss); $w->rang = 1; $workers[] = $w; }for ($i=0; $i<$this->engeenerB; $i++) // заносим в массив инжей 2й ранг { $w = new Engeener($this->rang, $this->stavka, $this->boss); $w->rang = 2; $workers[] = $w; }for ($i=0; $i<$this->engeenerC; $i++) // заносим в массив инжей 3й ранг { $w = new Engeener($this->rang, $this->stavka, $this->boss); $w->rang = 3; $workers[] = $w; } for ($i=0; $i<$this->engeenerBoss; $i++) // заносим в массив инжей боссов { $w = new Engeener($this->rang, $this->stavka, $this->boss); $w->rang = 1; $w->boss = true; $workers[] = $w; } for ($i=0; $i<$this->marketA; $i++) // заносим в массив маркетологов 1 { $w = new Market($this->rang, $this->stavka, $this->boss); $w->rang = 1; $workers[] = $w; } for ($i=0; $i<$this->marketB; $i++) // заносим в массив маркетологов 2 { $w = new Market($this->rang, $this->stavka, $this->boss); $w->rang = 2; $workers[] = $w; } for ($i=0; $i<$this->marketC; $i++) // заносим в массив мfhrtnjkjujd 3 { $w = new Market($this->rang, $this->stavka, $this->boss); $w->rang = 3; $workers[] = $w; } for ($i=0; $i<$this->marketBoss; $i++) // заносим в массив Boss Market { $w = new Market($this->rang, $this->stavka, $this->boss); $w->rang = 1; $w->boss = true; $workers[] = $w; } for ($i=0; $i<$this->analiticA; $i++) // заносим в массив Analitic 1 { $w = new Analitic($this->rang, $this->stavka, $this->boss); $w->rang = 1; $workers[] = $w; }for ($i=0; $i<$this->analiticB; $i++) // заносим в массив Analitic 2 { $w = new Analitic($this->rang, $this->stavka, $this->boss); $w->rang = 2; $workers[] = $w; }for ($i=0; $i<$this->analiticC; $i++) // Analitic 3 { $w = new Analitic($this->rang, $this->stavka, $this->boss); $w->rang = 3; $workers[] = $w; } for ($i=0; $i<$this->analiticC; $i++) // Analitic BoSS { $w = new Analitic($this->rang, $this->stavka, $this->boss); $w->rang = 3; $w->boss = true; $workers[] = $w; } return $workers; } } class ProcurementDivision extends Departament { public $name = "Закупок"; public $menedgerA=9; public $menedgerB=3; public $menedgerC=2; public $marketA=2; public $menedgerBoss=1; //поменять в классе на ранг } $quest = new ProcurementDivision;
Standard input is empty
object(ProcurementDivision)#1 (18) { ["name"]=> string(14) "Закупок" ["menedgerA"]=> int(9) ["menedgerB"]=> int(3) ["menedgerC"]=> int(2) ["marketA"]=> int(2) ["menedgerBoss"]=> int(1) ["workers"]=> array(27) { [0]=> object(Menedger)#2 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [1]=> object(Menedger)#3 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [2]=> object(Menedger)#4 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [3]=> object(Menedger)#5 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [4]=> object(Menedger)#6 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [5]=> object(Menedger)#7 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [6]=> object(Menedger)#8 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [7]=> object(Menedger)#9 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [8]=> object(Menedger)#10 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [9]=> object(Menedger)#11 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(2) ["endStavka"]=> int(0) ["boss"]=> NULL } [10]=> object(Menedger)#12 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(2) ["endStavka"]=> int(0) ["boss"]=> NULL } [11]=> object(Menedger)#13 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(2) ["endStavka"]=> int(0) ["boss"]=> NULL } [12]=> object(Menedger)#14 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [13]=> object(Menedger)#15 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [14]=> object(Menedger)#16 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [15]=> object(Menedger)#17 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [16]=> object(Menedger)#18 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [17]=> object(Menedger)#19 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [18]=> object(Menedger)#20 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [19]=> object(Menedger)#21 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [20]=> object(Menedger)#22 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [21]=> object(Menedger)#23 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(3) ["endStavka"]=> int(0) ["boss"]=> NULL } [22]=> object(Menedger)#24 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(3) ["endStavka"]=> int(0) ["boss"]=> NULL } [23]=> object(Menedger)#25 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(3) ["endStavka"]=> int(0) ["boss"]=> NULL } [24]=> object(Menedger)#26 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(200) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> bool(true) } [25]=> object(Market)#27 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(150) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } [26]=> object(Market)#28 (6) { ["dicrementcoffe"]=> int(0) ["stavka"]=> NULL ["mainingDocument"]=> int(150) ["rang"]=> int(1) ["endStavka"]=> int(0) ["boss"]=> NULL } } ["engeenerA"]=> NULL ["engeenerB"]=> NULL ["engeenerC"]=> NULL ["engeenerBoss"]=> NULL ["marketB"]=> NULL ["marketC"]=> NULL ["marketBoss"]=> NULL ["analiticA"]=> NULL ["analiticB"]=> NULL ["analiticC"]=> NULL ["analiticBoss"]=> NULL }
PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 92 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 98 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 103 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 108 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 114 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 114 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 114 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 143 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 143 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 143 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34 PHP Notice: Undefined property: ProcurementDivision::$rang in /home/QQT8Ph/prog.php on line 143 PHP Notice: Undefined property: ProcurementDivision::$stavka in /home/QQT8Ph/prog.php on line 143 PHP Notice: Undefined property: ProcurementDivision::$boss in /home/QQT8Ph/prog.php on line 143 PHP Notice: Undefined index: in /home/QQT8Ph/prog.php on line 29 PHP Notice: Undefined variable: endStavka in /home/QQT8Ph/prog.php on line 34