fork download
  1. <?php
  2.  
  3. // archive-ipq-co.narod.ru
  4.  
  5. class Worker
  6. {
  7. private static $percents = [
  8. 1,
  9. 1.25,
  10. 1.5
  11. ];
  12.  
  13. public $rang; // Ранг сотрудника 1-3
  14. public $dicrementcoffe; // выжрано кофе
  15. public $stavka; // начальная ставка
  16. public $mainingDocument; // Произвел документов
  17. public $endStavka; // окончательная ставка, вычисляется через функцию EndStavka
  18. public $boss = false; // является ли сотрудник начальником
  19.  
  20. public function __construct($rang, $stavka, $boss)
  21. {
  22. $this->rang = $rang;
  23. $this->stavka = $stavka;
  24. $this->boss = $boss;
  25.  
  26. $this->dicrementcoffe = 0;
  27.  
  28. $this->endStavka = $stavka * Worker::$percents[$this->rang];
  29.  
  30. if ($this->boss) {
  31. $this->endStavka *= $percents[2];
  32. }
  33. return $endStavka;
  34. }
  35. }
  36.  
  37. class Menedger extends Worker
  38. {
  39.  
  40.  
  41. public $dicrementcoffe = 20;
  42. public $stavka = 500;
  43. public $mainingDocument = 200;
  44. }
  45. class Market extends Worker
  46. {
  47. public $dicrementcoffe = 15;
  48. public $stavka = 400;
  49. public $mainingDocument = 150;
  50. }
  51. class Engeener extends Worker
  52. {
  53. public $dicrementcoffe = 5;
  54. public $stavka = 200;
  55. public $mainingDocument = 50;
  56. }
  57. class Analitic extends Worker
  58. {
  59. public $dicrementcoffe = 50;
  60. public $stavka = 800;
  61. public $mainingDocument = 5;
  62. }
  63. class Departament // возвращает массив с работниками в каждом департаменте
  64. {
  65. public $name;
  66. public $workers;
  67. public $menedgerA; //1 rang
  68. public $menedgerB; //2 rang
  69. public $menedgerC; //3 rang
  70. public $menedgerBoss; //Руководитель
  71. // инженеры
  72. public $engeenerA; //1 rang
  73. public $engeenerB; //2 rang
  74. public $engeenerC; //3 rang
  75. public $engeenerBoss; //Руководитель
  76. //маркетологи
  77. public $marketA;//1 rang
  78. public $marketB;//2 rang
  79. public $marketC;//3 rang
  80. public $marketBoss;//Руководитель
  81. //аналитики
  82. public $analiticA; //1 rang
  83. public $analiticB; //2 rang
  84. public $analiticC; //3 rang
  85. public $analiticBoss;
  86. public function __construct(){$this->workers=$this->quantityWorker();}
  87. public function quantityWorker () // Возвращает массив с сотрудниками
  88. {
  89. for ($i=0; $i<$this->menedgerA; $i++) // заносим в массив менеджеров 1й ранг
  90. {
  91. $w = new Menedger($this->rang, $this->stavka, $this->boss);
  92. $w->rang = 1;
  93. $workers[] = $w;
  94. }
  95. for ($i=0; $i<$this->menedgerB; $i++) // заносим в массив менеджеров 2й ранг
  96. {
  97. $w = new Menedger($this->rang, $this->stavka, $this->boss);
  98. $w->rang = 2;
  99. $workers[] = $w;
  100. }for ($i=0; $i<$this->menedgerA; $i++) // заносим в массив менеджеров 1й ранг
  101. {
  102. $w = new Menedger($this->rang, $this->stavka, $this->boss);
  103. $w->rang = 1;
  104. $workers[] = $w;
  105. }for ($i=0; $i<$this->menedgerB; $i++) // заносим в массив менеджеров 3й ранг
  106. {
  107. $w = new Menedger($this->rang, $this->stavka, $this->boss);
  108. $w->rang = 3;
  109. $workers[] = $w;
  110. }
  111. for ($i=0; $i<$this->menedgerBoss; $i++) // заносим в массив менеджеров руководителей
  112. {
  113. $w = new Menedger($this->rang, $this->stavka, $this->boss);
  114. $w->rang = 1;
  115. $w->boss = true;
  116. $workers[] = $w;
  117. }for ($i=0; $i<$this->engeenerA; $i++) // заносим в массив инженеров 1й ранг
  118. {
  119. $w = new Engeener($this->rang, $this->stavka, $this->boss);
  120. $w->rang = 1;
  121. $workers[] = $w;
  122. }for ($i=0; $i<$this->engeenerB; $i++) // заносим в массив инжей 2й ранг
  123. {
  124. $w = new Engeener($this->rang, $this->stavka, $this->boss);
  125. $w->rang = 2;
  126. $workers[] = $w;
  127. }for ($i=0; $i<$this->engeenerC; $i++) // заносим в массив инжей 3й ранг
  128. {
  129. $w = new Engeener($this->rang, $this->stavka, $this->boss);
  130. $w->rang = 3;
  131. $workers[] = $w;
  132. }
  133. for ($i=0; $i<$this->engeenerBoss; $i++) // заносим в массив инжей боссов
  134. {
  135. $w = new Engeener($this->rang, $this->stavka, $this->boss);
  136. $w->rang = 1;
  137. $w->boss = true;
  138. $workers[] = $w;
  139. }
  140. for ($i=0; $i<$this->marketA; $i++) // заносим в массив маркетологов 1
  141. {
  142. $w = new Market($this->rang, $this->stavka, $this->boss);
  143. $w->rang = 1;
  144. $workers[] = $w;
  145. }
  146. for ($i=0; $i<$this->marketB; $i++) // заносим в массив маркетологов 2
  147. {
  148. $w = new Market($this->rang, $this->stavka, $this->boss);
  149. $w->rang = 2;
  150. $workers[] = $w;
  151. }
  152. for ($i=0; $i<$this->marketC; $i++) // заносим в массив мfhrtnjkjujd 3
  153. { $w = new Market($this->rang, $this->stavka, $this->boss);
  154. $w->rang = 3;
  155. $workers[] = $w;
  156. }
  157. for ($i=0; $i<$this->marketBoss; $i++) // заносим в массив Boss Market
  158. {
  159. $w = new Market($this->rang, $this->stavka, $this->boss);
  160. $w->rang = 1;
  161. $w->boss = true;
  162. $workers[] = $w;
  163. }
  164. for ($i=0; $i<$this->analiticA; $i++) // заносим в массив Analitic 1
  165. {
  166. $w = new Analitic($this->rang, $this->stavka, $this->boss);
  167. $w->rang = 1;
  168. $workers[] = $w;
  169. }for ($i=0; $i<$this->analiticB; $i++) // заносим в массив Analitic 2
  170. {
  171. $w = new Analitic($this->rang, $this->stavka, $this->boss);
  172. $w->rang = 2;
  173. $workers[] = $w;
  174. }for ($i=0; $i<$this->analiticC; $i++) // Analitic 3
  175. {
  176. $w = new Analitic($this->rang, $this->stavka, $this->boss);
  177. $w->rang = 3;
  178. $workers[] = $w;
  179. }
  180. for ($i=0; $i<$this->analiticC; $i++) // Analitic BoSS
  181. {
  182. $w = new Analitic($this->rang, $this->stavka, $this->boss);
  183. $w->rang = 3;
  184. $w->boss = true;
  185. $workers[] = $w;
  186. }
  187. return $workers;
  188. }
  189.  
  190. }
  191. class ProcurementDivision extends Departament
  192. {
  193. public $name = "Закупок";
  194. public $menedgerA=9;
  195. public $menedgerB=3;
  196. public $menedgerC=2;
  197. public $marketA=2;
  198. public $menedgerBoss=1; //поменять в классе на ранг
  199. }
  200.  
  201. $quest = new ProcurementDivision;
  202. var_dump($quest);
Success #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
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
}
stderr
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