Upload by budget

This commit is contained in:
2018-05-11 13:10:28 +02:00
parent 9ef747a51e
commit f419ce6c23
17 changed files with 749 additions and 326 deletions

0
bin/cake Normal file → Executable file
View File

View File

@@ -10,24 +10,25 @@ try {
exit($e->getMessage() . "\n"); exit($e->getMessage() . "\n");
} }
//define('SCHULPORTAL_BASE0_URL', "https://portal.schulen.bayern.de"); define('SCHULPORTAL_BASE0_URL', "https://portal.schulen.bayern.de");
//define('SCHULPORTAL_BASE_URL', SCHULPORTAL_BASE0_URL . '/uniquesig2d1dfad4a11c25e42c462e53b4721e48/uniquesig0'); define('SCHULPORTAL_BASE_URL', SCHULPORTAL_BASE0_URL . '/uniquesig2d1dfad4a11c25e42c462e53b4721e48/uniquesig0');
//define('SCHULPORTAL_ASD_BASE_URL', SCHULPORTAL_BASE0_URL . '/uniquesigc3ba1685059aaf325d44099df697a0a635e79a4ec36ec614a98f3bf4b79d7c043ac3880605b7751df91d11233380ad86/uniquesig0/asd'); define('SCHULPORTAL_ASD_BASE_URL', SCHULPORTAL_BASE0_URL . '/uniquesigc3ba1685059aaf325d44099df697a0a635e79a4ec36ec614a98f3bf4b79d7c043ac3880605b7751df91d11233380ad86/uniquesig0/asd');
define('SCHULPORTAL_ASD_BASE_URL', 'http://192.168.56.3:8280/asd'); //define('SCHULPORTAL_ASD_BASE_URL', 'http://192.168.56.3:8280/asd');
//Configure::write('AsdCurl.proxy','10.1.248.1:82'); Configure::write('AsdCurl.proxy','10.1.248.1:82');
//Configure::write('AsdCurl.cookiejar', '/tmp/cookies.txt'); Configure::write('AsdCurl.cookiejar', '/tmp/cookies.txt');
//Configure::write('AsdCurl.cookiefile', '/tmp/cookies.txt'); Configure::write('AsdCurl.cookiefile', '/tmp/cookies.txt');
Configure::write('AsdCurl.cookiejar', 'C:/xampp/tmp/cookies.txt'); //Configure::write('AsdCurl.cookiejar', 'C:/xampp/tmp/cookies.txt');
Configure::write('AsdCurl.cookiefile', 'C:/xampp/tmp/cookies.txt'); //Configure::write('AsdCurl.cookiefile', 'C:/xampp/tmp/cookies.txt');
Configure::write('AsdCurl.cookie', 'cookiename=cookievalue'); Configure::write('AsdCurl.cookie', 'cookiename=cookievalue');
Configure::write('AsdCurl.useragent', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0'); Configure::write('AsdCurl.useragent', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0');
Configure::write('AsdCurl.cert','C:/xampp/htdocs/ssl_KM_Z2016_asd.trinkl.pem'); //Configure::write('AsdCurl.cert','C:/xampp/htdocs/ssl_KM_Z2016_asd.trinkl.pem');
//Configure::write('AsdCurl.schulbase0url',SCHULPORTAL_BASE0_URL); Configure::write('AsdCurl.cert','/var/www/html/ssl_KM_Z2016_asd.trinkl.pem');
//Configure::write('AsdCurl.schulbaseurl',SCHULPORTAL_BASE_URL); Configure::write('AsdCurl.schulbase0url',SCHULPORTAL_BASE0_URL);
Configure::write('AsdCurl.schulbaseurl',SCHULPORTAL_BASE_URL);
Configure::write('AsdCurl.asdbaseurl',SCHULPORTAL_ASD_BASE_URL); Configure::write('AsdCurl.asdbaseurl',SCHULPORTAL_ASD_BASE_URL);

View File

@@ -23,8 +23,8 @@ class AsdCurl
public function init_curl_params() public function init_curl_params()
{ {
$ch = curl_init(); $ch = curl_init();
//curl_setopt($ch, CURLOPT_PROXY, Configure::read('AsdCurl.proxy')); curl_setopt($ch, CURLOPT_PROXY, Configure::read('AsdCurl.proxy'));
curl_setopt($ch, CURLOPT_PROXY, false); //curl_setopt($ch, CURLOPT_PROXY, true);
curl_setopt($ch, CURLOPT_USERAGENT, Configure::read('AsdCurl.useragent')); curl_setopt($ch, CURLOPT_USERAGENT, Configure::read('AsdCurl.useragent'));
curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
@@ -33,8 +33,8 @@ class AsdCurl
curl_setopt($ch, CURLOPT_COOKIEJAR, Configure::read('AsdCurl.cookiejar')); curl_setopt($ch, CURLOPT_COOKIEJAR, Configure::read('AsdCurl.cookiejar'));
curl_setopt($ch, CURLOPT_COOKIEFILE, Configure::read('AsdCurl.cookiefile')); curl_setopt($ch, CURLOPT_COOKIEFILE, Configure::read('AsdCurl.cookiefile'));
curl_setopt($ch, CURLOPT_COOKIE, Configure::read('AsdCurl.cookie')); curl_setopt($ch, CURLOPT_COOKIE, Configure::read('AsdCurl.cookie'));
//curl_setopt($ch, CURLOPT_SSLCERT, Configure::read('AsdCurl.cert')); curl_setopt($ch, CURLOPT_SSLCERT, Configure::read('AsdCurl.cert'));
//curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
return ($ch); return ($ch);
} }
@@ -69,6 +69,7 @@ class AsdCurl
} }
curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_URL, $url);
$this->html = curl_exec($ch); $this->html = curl_exec($ch);
//debug($this->html);
//debug(curl_errno($ch)); //debug(curl_errno($ch));
//debug(curl_getinfo($ch, CURLINFO_HTTP_CODE)); //debug(curl_getinfo($ch, CURLINFO_HTTP_CODE));
if (curl_errno($ch)) { if (curl_errno($ch)) {
@@ -93,10 +94,10 @@ class AsdCurl
$viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete'); $viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete');
$login_data = [ $login_data = [
//'asd_username' => 'A005_TrinklW', 'asd_username' => 'A005_TrinklW',
//'asd_password' => 'HiegTzs!12', 'asd_password' => 'HiegTzs!12',
'asd_username' => 'A005_Superuser', //'asd_username' => 'A005_Superuser',
'asd_password' => 'asdtest01', //'asd_password' => 'asdtest01',
]; ];
$post = [ $post = [
'login:username' => $login_data['asd_username'], 'login:username' => $login_data['asd_username'],
@@ -162,11 +163,13 @@ class AsdCurl
$SCHULPORTAL_BASE0_URL = Configure::read('AsdCurl.schulbase0url'); $SCHULPORTAL_BASE0_URL = Configure::read('AsdCurl.schulbase0url');
$SCHULPORTAL_BASE_URL = Configure::read('AsdCurl.schulbaseurl'); $SCHULPORTAL_BASE_URL = Configure::read('AsdCurl.schulbaseurl');
//$login_data = $this->request->session()->read('data'); //$login_data = $this->request->session()->read('data');
//debug($SCHULPORTAL_BASE_URL);
$this->exec_curl($ch, $SCHULPORTAL_BASE_URL, false); $html = $this->exec_curl($ch, $SCHULPORTAL_BASE_URL, false);
//debug($html);
if(!($this->status)) { if(!($this->status)) {
die($this->error); die($this->error);
} }
//debug($html);
$login_data = [ $login_data = [
'portal_username' => 'asd.trinkl', 'portal_username' => 'asd.trinkl',
'portal_password' => 'HiegTzs!181', 'portal_password' => 'HiegTzs!181',

View File

@@ -45,10 +45,10 @@ class AsdUp extends AsdCurl
if(!($this->status)) { if(!($this->status)) {
die($this->error); die($this->error);
} }
echo $this->html;die; //echo $this->html;die;
} }
public function goto_budget($ch,$budget) { public function goto_budget($ch,$schooltype) {
$SCHULPORTAL_ASD_BASE_URL = Configure::read('AsdCurl.asdbaseurl'); $SCHULPORTAL_ASD_BASE_URL = Configure::read('AsdCurl.asdbaseurl');
// Reiter Unterrichtsplanung aufrufen // Reiter Unterrichtsplanung aufrufen
$viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete'); $viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete');
@@ -97,7 +97,8 @@ class AsdUp extends AsdCurl
'mainForm:nameOffiziell' => 'Bayer.Staatsministerium für Unterricht und Kultus München', 'mainForm:nameOffiziell' => 'Bayer.Staatsministerium für Unterricht und Kultus München',
'mainForm:schulstellePlzStrasse' => '80333', 'mainForm:schulstellePlzStrasse' => '80333',
'mainForm:schulstelleOrt' => 'München', 'mainForm:schulstelleOrt' => 'München',
'mainForm:schulnummer' => $budget['snr'], //'mainForm:schulnummer' => $budget['snr'],
'mainForm:schulnummer' => '0001',
'mainForm:action_anzeigen' => 'Direkt zur gewählten Schule', 'mainForm:action_anzeigen' => 'Direkt zur gewählten Schule',
'javax.faces.ViewState' => $viewstate 'javax.faces.ViewState' => $viewstate
]; ];
@@ -125,7 +126,8 @@ class AsdUp extends AsdCurl
'mainForm:istAnzeigeMaske' => 'false', 'mainForm:istAnzeigeMaske' => 'false',
'mainForm:schulnr' => '', 'mainForm:schulnr' => '',
'mainForm:schuljahr' => '23', 'mainForm:schuljahr' => '23',
'mainForm:schulnummer' => $budget['snr'], //'mainForm:schulnummer' => $budget['snr'],
'mainForm:schulnummer' => '0001',
'mainForm:tabs.1' => 'Budgetzuschläge', 'mainForm:tabs.1' => 'Budgetzuschläge',
'javax.faces.ViewState' => $viewstate 'javax.faces.ViewState' => $viewstate
]; ];
@@ -264,7 +266,7 @@ class AsdUp extends AsdCurl
public function write_budget($ch,$budget) { public function write_budget($ch,$budget) {
$SCHULPORTAL_ASD_BASE_URL = Configure::read('AsdCurl.asdbaseurl'); $SCHULPORTAL_ASD_BASE_URL = Configure::read('AsdCurl.asdbaseurl');
//debug($budget);die;
// Budget eintragen // Budget eintragen
$viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete'); $viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete');
$conversationId = $this->get_string_between($this->html, 'name="conversationId" value="', '" />'); $conversationId = $this->get_string_between($this->html, 'name="conversationId" value="', '" />');
@@ -285,7 +287,7 @@ class AsdUp extends AsdCurl
'mainForm:schulnr' => '', 'mainForm:schulnr' => '',
'mainForm:schuljahr' => '23', 'mainForm:schuljahr' => '23',
'mainForm:schulnummer' => $budget['snr'], 'mainForm:schulnummer' => $budget['snr'],
'mainForm:tab2:artZuschlag' => 'com.hp.asd.wl.domain.standard.Budgetform:' . $budget['budget_id'], 'mainForm:tab2:artZuschlag' => 'com.hp.asd.wl.domain.standard.Budgetform:' . $budget['wl_werteliste_nr'],
'mainForm:tab2:datumBis' => '31.07.2019', 'mainForm:tab2:datumBis' => '31.07.2019',
'mainForm:tab2:_edit_budget' => $budget['count'], 'mainForm:tab2:_edit_budget' => $budget['count'],
'mainForm:tab2:_edit_bemerkung' => $budget['comment'], 'mainForm:tab2:_edit_bemerkung' => $budget['comment'],
@@ -296,7 +298,6 @@ class AsdUp extends AsdCurl
if(!($this->status)) { if(!($this->status)) {
die($this->error); die($this->error);
} }
// Budget speichern // Budget speichern
$viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete'); $viewstate = $this->get_string_between($this->html, 'id="javax.faces.ViewState" value="', '" autocomplete');
$conversationId = $this->get_string_between($this->html, 'name="conversationId" value="', '" />'); $conversationId = $this->get_string_between($this->html, 'name="conversationId" value="', '" />');
@@ -317,7 +318,7 @@ class AsdUp extends AsdCurl
'mainForm:schulnr' => '', 'mainForm:schulnr' => '',
'mainForm:schuljahr' => '23', 'mainForm:schuljahr' => '23',
'mainForm:schulnummer' => $budget['snr'], 'mainForm:schulnummer' => $budget['snr'],
'mainForm:tab2:artZuschlag' => 'com.hp.asd.wl.domain.standard.Budgetform:' . $budget['budget_id'], 'mainForm:tab2:artZuschlag' => 'com.hp.asd.wl.domain.standard.Budgetform:' . $budget['wl_werteliste_nr'],
'mainForm:tab2:datumBis' => '31.07.2019', 'mainForm:tab2:datumBis' => '31.07.2019',
'mainForm:tab2:_edit_budget' => '', 'mainForm:tab2:_edit_budget' => '',
'mainForm:tab2:_edit_bemerkung' => '', 'mainForm:tab2:_edit_bemerkung' => '',
@@ -328,7 +329,6 @@ class AsdUp extends AsdCurl
if(!($this->status)) { if(!($this->status)) {
die($this->error); die($this->error);
} }
//echo $this->html;die; //echo $this->html;die;
} }

View File

@@ -60,10 +60,71 @@ class BudgetController extends AppController
} }
public function editBudget($id = null) { public function editBudget($id = null) {
$session = $this->request->session(); $session = $this->request->session();
//debug($session->read('SchoolType'));die; //debug($session->read('SchoolType'));die;
$schooltype = $session->read('SchoolType'); $schooltype = $session->read('SchoolType');
//debug($schooltype);
if($schooltype == '02') {
$schooltype_nr = 2;
}
else {
$schooltype_nr = 4;
}
//debug($this->referer());
$budget_id = $this->request->params['pass'][0];
//debug($budget_id);
$uploadData = '';
if ($this->request->is('post')) {
if(!empty($this->request->data['file']['name'])){
$result = $this->Budget->deleteAll(['wl_budget_id' => $budget_id]);
//debug($result);die;
$handle = fopen($this->request->data['file']['tmp_name'], "r");
$head = true;
$snr_arr = array();
if ($handle) {
while (($line = fgets($handle)) !== false) {
if(strlen($line) > 2) {
if($head) {
$headers = explode(';',$line);
$head = false;
}
else {
$line_arr = explode(';',$line);
if(!isset($snr_arr[$line_arr[0]])) {
$new_budget['wl_schooltype_id'] = $schooltype_nr;
$new_budget['snr'] = $line_arr[0];
$new_budget['wl_budget_id'] = $budget_id;
$new_budget['count'] = $line_arr[1];
$new_budget['comment'] = trim($line_arr[2]);
$new_budget['year'] = '2018';
$new_budget['asd'] = false;
$snr_arr[$line_arr[0]] = $new_budget;
}
else {
$snr_arr[$line_arr[0]]['count'] = $snr_arr[$line_arr[0]]['count'] + $line_arr[1];
//debug($snr_arr[$line_arr[0]]);
}
}
}
}
fclose($handle);
}
//debug($snr_arr);die;
foreach ($snr_arr as $item) {
//debug($item);
$new = $this->Budget->newEntity();
$new = $this->Budget->patchEntity($new, $item);
$result = $this->Budget->save($new);
//debug($result);die;
}
//die;
} else {
$this->Flash->error(__('Please choose a file to upload.'));
}
}
$this->set('uploadData', $uploadData);
$this->loadModel('Schools'); $this->loadModel('Schools');
$schools = $this->Schools->find('all', [ $schools = $this->Schools->find('all', [
'conditions' => array('dst_schulart' => $schooltype) 'conditions' => array('dst_schulart' => $schooltype)
@@ -82,9 +143,13 @@ class BudgetController extends AppController
]); ]);
foreach($budgets as $budget) { foreach($budgets as $budget) {
//debug($budget);
$data[$budget['snr']][2] = $budget['count']; $data[$budget['snr']][2] = $budget['count'];
$data[$budget['snr']][3] = $budget['comment']; $data[$budget['snr']][3] = $budget['comment'];
$data[$budget['snr']][4] = $budget['asd'];
} }
//debug($data);
//die;
$data_arr = array(); $data_arr = array();
foreach($data as $entry) { foreach($data as $entry) {
array_push($data_arr,$entry); array_push($data_arr,$entry);
@@ -129,6 +194,7 @@ class BudgetController extends AppController
if($budget['count'] != $line[2] ) { if($budget['count'] != $line[2] ) {
if($line[2] > 0) { if($line[2] > 0) {
$budget['count'] = $line[2]; $budget['count'] = $line[2];
$budget['asd'] = 0;
$this->Budget->save($budget); $this->Budget->save($budget);
} }
else { else {
@@ -138,6 +204,7 @@ class BudgetController extends AppController
} }
if($budget['comment'] != $line[3] ) { if($budget['comment'] != $line[3] ) {
$budget['comment'] = $line[3]; $budget['comment'] = $line[3];
$budget['asd'] = 0;
$this->Budget->save($budget); $this->Budget->save($budget);
fwrite($myfile,'full-comment' . PHP_EOL); fwrite($myfile,'full-comment' . PHP_EOL);
} }
@@ -151,6 +218,7 @@ class BudgetController extends AppController
$new_budget['count'] = $line[2]; $new_budget['count'] = $line[2];
$new_budget['comment'] = $line[3]; $new_budget['comment'] = $line[3];
$new_budget['year'] = '2018'; $new_budget['year'] = '2018';
$new_budget['asd'] = 0;
$new = $this->Budget->patchEntity($new, $new_budget); $new = $this->Budget->patchEntity($new, $new_budget);
$this->Budget->save($new); $this->Budget->save($new);
} }
@@ -418,15 +486,50 @@ class BudgetController extends AppController
} }
public function writeBudgetById($budget_id) {
//debug($budget_id);die;
$curl = new AsdUp();
$ch = $curl->init_curl_params();
$curl->login_school($ch); //Login Schulportal
$curl->login_asd($ch); //Login ASD Applikation
$budget_typ = $this->Budget->wlBudgets->get($budget_id);
//debug($budget_typ);
$curl->goto_budget($ch,$budget_typ['schulart']);
//debug($curl->html);
$output = array();
$budgets = $this->Budget->find('all',[
'conditions' => ['wl_budget_id' => $budget_id,'asd' => 0],
'limit' => 100
]);
foreach ($budgets as $budget) {
$curl->change_school($ch,$budget['snr']);
$budget['wl_werteliste_nr'] = $budget_typ['wl_werteliste_nr'];
//echo $curl->html;
$pos = strpos($curl->html,'class="hideOverflow200px" title="'. $budget_typ['wl_kurz_bezeichnung']. '"'); //ist das Budget schon eingetragen?
//debug($pos);
if(!$pos) {
$curl->write_budget($ch,$budget);
$budget->asd = true;
$this->Budget->save($budget);
array_push($output,$budget);
}
}
$this->set('output',$output);
}
public function writeAsd() public function writeAsd()
{ {
$curl = new AsdUp(); $curl = new AsdUp();
//debug($curl->status); //debug($curl->status);
$ch = $curl->init_curl_params(); $ch = $curl->init_curl_params();
//$curl->login_school($ch); //Login Schulportal //debug($ch);
$curl->login_asd($ch); $curl->login_school($ch); //Login Schulportal
//debug($curl->html); //debug($curl->html);
$curl->login_asd($ch);
debug($curl->html);
die;
$budget['snr'] = '9310'; $budget['snr'] = '9310';
$budget['budget_id'] = '1519'; $budget['budget_id'] = '1519';
$budget['count'] = '5'; $budget['count'] = '5';

View File

@@ -13,6 +13,7 @@ use Cake\ORM\Entity;
* @property int $count * @property int $count
* @property string $comment * @property string $comment
* @property string $year * @property string $year
* @property bool $asd
* @property \Cake\I18n\FrozenTime $created * @property \Cake\I18n\FrozenTime $created
* @property \Cake\I18n\FrozenTime $modified * @property \Cake\I18n\FrozenTime $modified
* *
@@ -38,6 +39,7 @@ class Budget extends Entity
'count' => true, 'count' => true,
'comment' => true, 'comment' => true,
'year' => true, 'year' => true,
'asd' => true,
'created' => true, 'created' => true,
'modified' => true, 'modified' => true,
'wl_schooltype' => true, 'wl_schooltype' => true,

View File

@@ -77,14 +77,18 @@ class BudgetTable extends Table
$validator $validator
->scalar('comment') ->scalar('comment')
->maxLength('comment', 255) ->maxLength('comment', 255)
->requirePresence('comment', 'create') ->allowEmpty('comment');
->notEmpty('comment');
$validator $validator
->scalar('year') ->scalar('year')
->requirePresence('year', 'create') ->requirePresence('year', 'create')
->notEmpty('year'); ->notEmpty('year');
$validator
->boolean('asd')
->requirePresence('asd', 'create')
->notEmpty('asd');
return $validator; return $validator;
} }

View File

@@ -25,6 +25,7 @@
echo $this->Form->control('count'); echo $this->Form->control('count');
echo $this->Form->control('comment'); echo $this->Form->control('comment');
echo $this->Form->control('year'); echo $this->Form->control('year');
echo $this->Form->control('asd');
?> ?>
</fieldset> </fieldset>
<?= $this->Form->button(__('Submit')) ?> <?= $this->Form->button(__('Submit')) ?>

View File

@@ -31,6 +31,7 @@
echo $this->Form->control('count'); echo $this->Form->control('count');
echo $this->Form->control('comment'); echo $this->Form->control('comment');
echo $this->Form->control('year'); echo $this->Form->control('year');
echo $this->Form->control('asd');
?> ?>
</fieldset> </fieldset>
<?= $this->Form->button(__('Submit')) ?> <?= $this->Form->button(__('Submit')) ?>

View File

@@ -2,15 +2,24 @@
//debug($data); //debug($data);
for($i=0;$i<sizeof($data);$i++) { for($i=0;$i<sizeof($data);$i++) {
$data[$i][1] = $this->Html->link($data[$i][1],array('controller' => 'schools', 'action' => 'showbudgets',$data[$i][0])); $data[$i][1] = $this->Html->link($data[$i][1],array('controller' => 'schools', 'action' => 'showbudgets',$data[$i][0]));
//debug($data[$i]);
} }
echo '<h2>' . $budget['wl_kurz_bezeichnung'] .'</h2>'; echo '<h2>' . $budget['wl_kurz_bezeichnung'] .'</h2>';
$budget_id = $this->request->params['pass'][0];
echo $this->Html->link('Upload to ASD',array('controller' => 'budget', 'action' => 'writeBudgetById' . '/' . $budget_id));
//debug($data); //debug($data);
?> ?>
<div class="controls"> <div class="controls">
<button name="load" id="load" class="intext-btn">Load</button> <button name="load" id="load" class="intext-btn">Load</button>
<button name="save" id="save" class="intext-btn">Save</button> <button name="save" id="save" class="intext-btn">Save</button>
</div> </div>
<div class="upload-frm">
<?php echo $this->Form->create($uploadData, ['type' => 'file']); ?>
<?php echo $this->Form->input('file', ['type' => 'file', 'class' => 'form-control']); ?>
<?php echo $this->Form->button(__('Upload File'), ['type'=>'submit', 'class' => 'form-controlbtn btn-default']); ?>
<?php echo $this->Form->end(); ?>
</div>
<div id="editbudget"></div> <div id="editbudget"></div>
<script> <script>
var data = <?php echo json_encode($data); ?>; var data = <?php echo json_encode($data); ?>;
@@ -27,9 +36,9 @@ var data = <?php echo json_encode($data); ?>;
height: 800, height: 800,
rowHeaders: true, rowHeaders: true,
wordWrap: false, wordWrap: false,
colHeaders: ['SNR','Name','Count','Comment'] , colHeaders: ['SNR','Name','Count','Comment','ASD'] ,
colWidths: ['50','500','50','500'], colWidths: ['50','500','50','500','50'],
columns: [{renderer: "text", readOnly: true},{renderer: "html", readOnly: true},{renderer: "text"},{renderer: "text"}], columns: [{renderer: "text", readOnly: true},{renderer: "html", readOnly: true},{renderer: "text"},{renderer: "text"},{renderer: "text", readOnly: true}],
filters: true, filters: true,
dropdownMenu: true dropdownMenu: true
}); });
@@ -46,9 +55,10 @@ var data = <?php echo json_encode($data); ?>;
success: function (res) { success: function (res) {
//console.log(res); //console.log(res);
//var data = JSON.parse(res); //var data = JSON.parse(res);
location.reload(true);
} }
}); });
}); });
$('#load').click(function() { $('#load').click(function() {

View File

@@ -26,6 +26,7 @@
<th scope="col"><?= $this->Paginator->sort('count') ?></th> <th scope="col"><?= $this->Paginator->sort('count') ?></th>
<th scope="col"><?= $this->Paginator->sort('comment') ?></th> <th scope="col"><?= $this->Paginator->sort('comment') ?></th>
<th scope="col"><?= $this->Paginator->sort('year') ?></th> <th scope="col"><?= $this->Paginator->sort('year') ?></th>
<th scope="col"><?= $this->Paginator->sort('asd') ?></th>
<th scope="col"><?= $this->Paginator->sort('created') ?></th> <th scope="col"><?= $this->Paginator->sort('created') ?></th>
<th scope="col"><?= $this->Paginator->sort('modified') ?></th> <th scope="col"><?= $this->Paginator->sort('modified') ?></th>
<th scope="col" class="actions"><?= __('Actions') ?></th> <th scope="col" class="actions"><?= __('Actions') ?></th>
@@ -41,6 +42,7 @@
<td><?= $this->Number->format($budget->count) ?></td> <td><?= $this->Number->format($budget->count) ?></td>
<td><?= h($budget->comment) ?></td> <td><?= h($budget->comment) ?></td>
<td><?= h($budget->year) ?></td> <td><?= h($budget->year) ?></td>
<td><?= h($budget->asd) ?></td>
<td><?= h($budget->created) ?></td> <td><?= h($budget->created) ?></td>
<td><?= h($budget->modified) ?></td> <td><?= h($budget->modified) ?></td>
<td class="actions"> <td class="actions">

View File

@@ -56,5 +56,9 @@
<th scope="row"><?= __('Modified') ?></th> <th scope="row"><?= __('Modified') ?></th>
<td><?= h($budget->modified) ?></td> <td><?= h($budget->modified) ?></td>
</tr> </tr>
<tr>
<th scope="row"><?= __('Asd') ?></th>
<td><?= $budget->asd ? __('Yes') : __('No'); ?></td>
</tr>
</table> </table>
</div> </div>

View File

@@ -0,0 +1,8 @@
<?php
echo '<table>';
foreach($output as $line) {
echo '<tr><td>' . $line['snr'] . '</td><td>' . $line['count'] . '</td></tr>';
}
echo '</table>';
?>

View File

@@ -29,8 +29,9 @@ class BudgetFixture extends TestFixture
'snr' => ['type' => 'string', 'length' => 4, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null, 'fixed' => null], 'snr' => ['type' => 'string', 'length' => 4, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null, 'fixed' => null],
'wl_budget_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null], 'wl_budget_id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
'count' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null], 'count' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
'comment' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null, 'fixed' => null], 'comment' => ['type' => 'string', 'length' => 255, 'null' => true, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null, 'fixed' => null],
'year' => ['type' => 'string', 'length' => null, 'null' => false, 'default' => null, 'collate' => null, 'comment' => '', 'precision' => null, 'fixed' => null], 'year' => ['type' => 'string', 'length' => null, 'null' => false, 'default' => null, 'collate' => null, 'comment' => '', 'precision' => null, 'fixed' => null],
'asd' => ['type' => 'boolean', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null],
'created' => ['type' => 'datetime', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null], 'created' => ['type' => 'datetime', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null],
'modified' => ['type' => 'datetime', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null], 'modified' => ['type' => 'datetime', 'length' => null, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null],
'_constraints' => [ '_constraints' => [
@@ -57,8 +58,9 @@ class BudgetFixture extends TestFixture
'count' => 1, 'count' => 1,
'comment' => 'Lorem ipsum dolor sit amet', 'comment' => 'Lorem ipsum dolor sit amet',
'year' => 'Lorem ipsum dolor sit amet', 'year' => 'Lorem ipsum dolor sit amet',
'created' => '2018-03-14 07:15:25', 'asd' => 1,
'modified' => '2018-03-14 07:15:25' 'created' => '2018-05-09 05:27:14',
'modified' => '2018-05-09 05:27:14'
], ],
]; ];
} }

View File

@@ -26,8 +26,7 @@ class BudgetTableTest extends TestCase
public $fixtures = [ public $fixtures = [
'app.budget', 'app.budget',
'app.wl_schooltypes', 'app.wl_schooltypes',
'app.wl_budgets', 'app.wl_budgets'
'app.wl_wertelistes'
]; ];
/** /**

View File

@@ -1,325 +1,325 @@
"16" "16"
"04" "04"
{"id":55,"wl_schooltype_id":2,"snr":"0001","wl_budget_id":16,"count":8,"comment":"auto","year":"2018","created":"2018-04-11T11:37:22+00:00","modified":"2018-04-11T12:16:41+00:00"} {"id":1667,"wl_schooltype_id":4,"snr":"0001","wl_budget_id":16,"count":37,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
empty
{"id":1668,"wl_schooltype_id":4,"snr":"0005","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1669,"wl_schooltype_id":4,"snr":"0008","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1670,"wl_schooltype_id":4,"snr":"0009","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1671,"wl_schooltype_id":4,"snr":"0010","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1672,"wl_schooltype_id":4,"snr":"0011","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1673,"wl_schooltype_id":4,"snr":"0012","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1674,"wl_schooltype_id":4,"snr":"0013","wl_budget_id":16,"count":15,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1675,"wl_schooltype_id":4,"snr":"0015","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1676,"wl_schooltype_id":4,"snr":"0017","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1677,"wl_schooltype_id":4,"snr":"0018","wl_budget_id":16,"count":13,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1678,"wl_schooltype_id":4,"snr":"0020","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1679,"wl_schooltype_id":4,"snr":"0025","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1680,"wl_schooltype_id":4,"snr":"0026","wl_budget_id":16,"count":16,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1681,"wl_schooltype_id":4,"snr":"0028","wl_budget_id":16,"count":32,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1682,"wl_schooltype_id":4,"snr":"0029","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1683,"wl_schooltype_id":4,"snr":"0030","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1684,"wl_schooltype_id":4,"snr":"0032","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1685,"wl_schooltype_id":4,"snr":"0033","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1686,"wl_schooltype_id":4,"snr":"0034","wl_budget_id":16,"count":15,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1687,"wl_schooltype_id":4,"snr":"0039","wl_budget_id":16,"count":16,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1688,"wl_schooltype_id":4,"snr":"0040","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1689,"wl_schooltype_id":4,"snr":"0041","wl_budget_id":16,"count":15,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1690,"wl_schooltype_id":4,"snr":"0042","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":50,"wl_schooltype_id":4,"snr":"0005","wl_budget_id":16,"count":3,"comment":"auto","year":"2018","created":"2018-04-10T14:33:08+00:00","modified":"2018-04-10T14:33:08+00:00"} {"id":1691,"wl_schooltype_id":4,"snr":"0046","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1692,"wl_schooltype_id":4,"snr":"0047","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1693,"wl_schooltype_id":4,"snr":"0049","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1694,"wl_schooltype_id":4,"snr":"0052","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1695,"wl_schooltype_id":4,"snr":"0053","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1696,"wl_schooltype_id":4,"snr":"0054","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1697,"wl_schooltype_id":4,"snr":"0056","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1698,"wl_schooltype_id":4,"snr":"0058","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1699,"wl_schooltype_id":4,"snr":"0059","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1700,"wl_schooltype_id":4,"snr":"0060","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1701,"wl_schooltype_id":4,"snr":"0062","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1702,"wl_schooltype_id":4,"snr":"0063","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1703,"wl_schooltype_id":4,"snr":"0064","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1704,"wl_schooltype_id":4,"snr":"0065","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1705,"wl_schooltype_id":4,"snr":"0066","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
{"id":1706,"wl_schooltype_id":4,"snr":"0069","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1707,"wl_schooltype_id":4,"snr":"0070","wl_budget_id":16,"count":28,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1708,"wl_schooltype_id":4,"snr":"0071","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1709,"wl_schooltype_id":4,"snr":"0072","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1710,"wl_schooltype_id":4,"snr":"0073","wl_budget_id":16,"count":14,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1711,"wl_schooltype_id":4,"snr":"0076","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1712,"wl_schooltype_id":4,"snr":"0077","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1713,"wl_schooltype_id":4,"snr":"0080","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1714,"wl_schooltype_id":4,"snr":"0082","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1715,"wl_schooltype_id":4,"snr":"0083","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1716,"wl_schooltype_id":4,"snr":"0084","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1717,"wl_schooltype_id":4,"snr":"0085","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1718,"wl_schooltype_id":4,"snr":"0086","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1719,"wl_schooltype_id":4,"snr":"0087","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1720,"wl_schooltype_id":4,"snr":"0089","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1721,"wl_schooltype_id":4,"snr":"0091","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1722,"wl_schooltype_id":4,"snr":"0092","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1723,"wl_schooltype_id":4,"snr":"0093","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1724,"wl_schooltype_id":4,"snr":"0094","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1725,"wl_schooltype_id":4,"snr":"0097","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1726,"wl_schooltype_id":4,"snr":"0099","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1727,"wl_schooltype_id":4,"snr":"0100","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1728,"wl_schooltype_id":4,"snr":"0102","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1729,"wl_schooltype_id":4,"snr":"0104","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1730,"wl_schooltype_id":4,"snr":"0106","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1731,"wl_schooltype_id":4,"snr":"0107","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1732,"wl_schooltype_id":4,"snr":"0109","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1733,"wl_schooltype_id":4,"snr":"0111","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1734,"wl_schooltype_id":4,"snr":"0112","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1735,"wl_schooltype_id":4,"snr":"0114","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1736,"wl_schooltype_id":4,"snr":"0115","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1737,"wl_schooltype_id":4,"snr":"0116","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1738,"wl_schooltype_id":4,"snr":"0117","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1739,"wl_schooltype_id":4,"snr":"0120","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1740,"wl_schooltype_id":4,"snr":"0122","wl_budget_id":16,"count":13,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1741,"wl_schooltype_id":4,"snr":"0123","wl_budget_id":16,"count":16,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1742,"wl_schooltype_id":4,"snr":"0124","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1743,"wl_schooltype_id":4,"snr":"0129","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1744,"wl_schooltype_id":4,"snr":"0131","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1745,"wl_schooltype_id":4,"snr":"0133","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1746,"wl_schooltype_id":4,"snr":"0134","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1747,"wl_schooltype_id":4,"snr":"0135","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1748,"wl_schooltype_id":4,"snr":"0137","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty
{"id":1749,"wl_schooltype_id":4,"snr":"0139","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1750,"wl_schooltype_id":4,"snr":"0140","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1751,"wl_schooltype_id":4,"snr":"0141","wl_budget_id":16,"count":24,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1752,"wl_schooltype_id":4,"snr":"0142","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1753,"wl_schooltype_id":4,"snr":"0143","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1754,"wl_schooltype_id":4,"snr":"0144","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1755,"wl_schooltype_id":4,"snr":"0145","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1756,"wl_schooltype_id":4,"snr":"0147","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1757,"wl_schooltype_id":4,"snr":"0149","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
empty empty
{"id":1758,"wl_schooltype_id":4,"snr":"0152","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1759,"wl_schooltype_id":4,"snr":"0154","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1760,"wl_schooltype_id":4,"snr":"0155","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
empty empty
{"id":1761,"wl_schooltype_id":4,"snr":"0158","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1762,"wl_schooltype_id":4,"snr":"0159","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
{"id":1763,"wl_schooltype_id":4,"snr":"0161","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
empty empty
empty empty
{"id":1764,"wl_schooltype_id":4,"snr":"0164","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1765,"wl_schooltype_id":4,"snr":"0165","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T05:58:10+00:00","modified":"2018-05-11T05:58:10+00:00"}
{"id":1766,"wl_schooltype_id":4,"snr":"0167","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1767,"wl_schooltype_id":4,"snr":"0168","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
{"id":1768,"wl_schooltype_id":4,"snr":"0171","wl_budget_id":16,"count":20,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1769,"wl_schooltype_id":4,"snr":"0172","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
{"id":1770,"wl_schooltype_id":4,"snr":"0174","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1771,"wl_schooltype_id":4,"snr":"0175","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1772,"wl_schooltype_id":4,"snr":"0176","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1773,"wl_schooltype_id":4,"snr":"0177","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1774,"wl_schooltype_id":4,"snr":"0178","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1775,"wl_schooltype_id":4,"snr":"0179","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
{"id":1776,"wl_schooltype_id":4,"snr":"0181","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1777,"wl_schooltype_id":4,"snr":"0182","wl_budget_id":16,"count":16,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
{"id":1778,"wl_schooltype_id":4,"snr":"0184","wl_budget_id":16,"count":107,"comment":"Einzelinklusion (23), Jgst. 5 (12), 6 (14), 7 (14), Q11 (22), Q12 (22), FS 11\/12 (8)","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T09:36:04+00:00"}
full-count
{"id":1779,"wl_schooltype_id":4,"snr":"0185","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1780,"wl_schooltype_id":4,"snr":"0186","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1781,"wl_schooltype_id":4,"snr":"0187","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1782,"wl_schooltype_id":4,"snr":"0188","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1783,"wl_schooltype_id":4,"snr":"0189","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1784,"wl_schooltype_id":4,"snr":"0190","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
{"id":1785,"wl_schooltype_id":4,"snr":"0200","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1786,"wl_schooltype_id":4,"snr":"0205","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1787,"wl_schooltype_id":4,"snr":"0209","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
empty empty
{"id":1788,"wl_schooltype_id":4,"snr":"0217","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1789,"wl_schooltype_id":4,"snr":"0218","wl_budget_id":16,"count":13,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1790,"wl_schooltype_id":4,"snr":"0219","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1791,"wl_schooltype_id":4,"snr":"0221","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
{"id":1792,"wl_schooltype_id":4,"snr":"0224","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1793,"wl_schooltype_id":4,"snr":"0225","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
{"id":1794,"wl_schooltype_id":4,"snr":"0227","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1795,"wl_schooltype_id":4,"snr":"0229","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1796,"wl_schooltype_id":4,"snr":"0230","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1797,"wl_schooltype_id":4,"snr":"0231","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
empty empty
empty empty
empty empty
{"id":1798,"wl_schooltype_id":4,"snr":"0235","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1799,"wl_schooltype_id":4,"snr":"0236","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1800,"wl_schooltype_id":4,"snr":"0237","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1801,"wl_schooltype_id":4,"snr":"0244","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:10:55+00:00","modified":"2018-05-11T06:10:55+00:00"}
{"id":1802,"wl_schooltype_id":4,"snr":"0245","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1803,"wl_schooltype_id":4,"snr":"0246","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1804,"wl_schooltype_id":4,"snr":"0247","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
empty empty
{"id":1805,"wl_schooltype_id":4,"snr":"0250","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1806,"wl_schooltype_id":4,"snr":"0251","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1807,"wl_schooltype_id":4,"snr":"0252","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1808,"wl_schooltype_id":4,"snr":"0255","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1809,"wl_schooltype_id":4,"snr":"0256","wl_budget_id":16,"count":14,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
empty empty
{"id":1810,"wl_schooltype_id":4,"snr":"0258","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1811,"wl_schooltype_id":4,"snr":"0259","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1812,"wl_schooltype_id":4,"snr":"0260","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1813,"wl_schooltype_id":4,"snr":"0261","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1814,"wl_schooltype_id":4,"snr":"0263","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T06:13:00+00:00","modified":"2018-05-11T06:13:00+00:00"}
{"id":1815,"wl_schooltype_id":4,"snr":"0264","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
{"id":1816,"wl_schooltype_id":4,"snr":"0265","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
{"id":1817,"wl_schooltype_id":4,"snr":"0273","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
{"id":1818,"wl_schooltype_id":4,"snr":"0274","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
{"id":1819,"wl_schooltype_id":4,"snr":"0275","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
{"id":1820,"wl_schooltype_id":4,"snr":"0279","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
{"id":1821,"wl_schooltype_id":4,"snr":"0280","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
{"id":1822,"wl_schooltype_id":4,"snr":"0281","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
{"id":1823,"wl_schooltype_id":4,"snr":"0284","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
{"id":1824,"wl_schooltype_id":4,"snr":"0285","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
{"id":1825,"wl_schooltype_id":4,"snr":"0286","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
{"id":1826,"wl_schooltype_id":4,"snr":"0288","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1827,"wl_schooltype_id":4,"snr":"0291","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1828,"wl_schooltype_id":4,"snr":"0292","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1829,"wl_schooltype_id":4,"snr":"0294","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
empty {"id":1830,"wl_schooltype_id":4,"snr":"0298","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
empty {"id":1831,"wl_schooltype_id":4,"snr":"0302","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1832,"wl_schooltype_id":4,"snr":"0303","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1833,"wl_schooltype_id":4,"snr":"0304","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1834,"wl_schooltype_id":4,"snr":"0305","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1835,"wl_schooltype_id":4,"snr":"0306","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
empty {"id":1836,"wl_schooltype_id":4,"snr":"0309","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1837,"wl_schooltype_id":4,"snr":"0312","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
empty {"id":1838,"wl_schooltype_id":4,"snr":"0318","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1839,"wl_schooltype_id":4,"snr":"0319","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1840,"wl_schooltype_id":4,"snr":"0320","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1841,"wl_schooltype_id":4,"snr":"0321","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1842,"wl_schooltype_id":4,"snr":"0323","wl_budget_id":16,"count":20,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1843,"wl_schooltype_id":4,"snr":"0325","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1844,"wl_schooltype_id":4,"snr":"0330","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1845,"wl_schooltype_id":4,"snr":"0333","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1846,"wl_schooltype_id":4,"snr":"0335","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1847,"wl_schooltype_id":4,"snr":"0336","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1848,"wl_schooltype_id":4,"snr":"0340","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1849,"wl_schooltype_id":4,"snr":"0341","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1850,"wl_schooltype_id":4,"snr":"0342","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1851,"wl_schooltype_id":4,"snr":"0343","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1852,"wl_schooltype_id":4,"snr":"0354","wl_budget_id":16,"count":43,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1853,"wl_schooltype_id":4,"snr":"0355","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1854,"wl_schooltype_id":4,"snr":"0357","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1855,"wl_schooltype_id":4,"snr":"0358","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1856,"wl_schooltype_id":4,"snr":"0359","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1857,"wl_schooltype_id":4,"snr":"0361","wl_budget_id":16,"count":14,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1858,"wl_schooltype_id":4,"snr":"0362","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1859,"wl_schooltype_id":4,"snr":"0363","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1860,"wl_schooltype_id":4,"snr":"0364","wl_budget_id":16,"count":15,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1861,"wl_schooltype_id":4,"snr":"0365","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1862,"wl_schooltype_id":4,"snr":"0366","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1863,"wl_schooltype_id":4,"snr":"0367","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1864,"wl_schooltype_id":4,"snr":"0369","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1865,"wl_schooltype_id":4,"snr":"0370","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1866,"wl_schooltype_id":4,"snr":"0371","wl_budget_id":16,"count":17,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1867,"wl_schooltype_id":4,"snr":"0372","wl_budget_id":16,"count":14,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1868,"wl_schooltype_id":4,"snr":"0374","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1869,"wl_schooltype_id":4,"snr":"0375","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1870,"wl_schooltype_id":4,"snr":"0376","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1871,"wl_schooltype_id":4,"snr":"0377","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1872,"wl_schooltype_id":4,"snr":"0378","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1873,"wl_schooltype_id":4,"snr":"0380","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1874,"wl_schooltype_id":4,"snr":"0381","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1875,"wl_schooltype_id":4,"snr":"0382","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1876,"wl_schooltype_id":4,"snr":"0383","wl_budget_id":16,"count":19,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1877,"wl_schooltype_id":4,"snr":"0384","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1878,"wl_schooltype_id":4,"snr":"0385","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1879,"wl_schooltype_id":4,"snr":"0388","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1880,"wl_schooltype_id":4,"snr":"0389","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1881,"wl_schooltype_id":4,"snr":"0390","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1882,"wl_schooltype_id":4,"snr":"0391","wl_budget_id":16,"count":9,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty empty
empty {"id":1883,"wl_schooltype_id":4,"snr":"0394","wl_budget_id":16,"count":23,"comment":"Einzelinklusion (3), SchUB (20)","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty {"id":1884,"wl_schooltype_id":4,"snr":"0395","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:04+00:00","modified":"2018-05-11T09:36:04+00:00"}
empty empty
empty {"id":1885,"wl_schooltype_id":4,"snr":"0398","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1886,"wl_schooltype_id":4,"snr":"0399","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1887,"wl_schooltype_id":4,"snr":"0950","wl_budget_id":16,"count":16,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1888,"wl_schooltype_id":4,"snr":"0951","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1889,"wl_schooltype_id":4,"snr":"0952","wl_budget_id":16,"count":1,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1890,"wl_schooltype_id":4,"snr":"0953","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1891,"wl_schooltype_id":4,"snr":"0954","wl_budget_id":16,"count":11,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty empty
empty {"id":1892,"wl_schooltype_id":4,"snr":"0958","wl_budget_id":16,"count":4,"comment":"Einzelinklusion (2), Partnerklasse (2)","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1893,"wl_schooltype_id":4,"snr":"0959","wl_budget_id":16,"count":13,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty empty
empty {"id":1894,"wl_schooltype_id":4,"snr":"0963","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1895,"wl_schooltype_id":4,"snr":"0964","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1896,"wl_schooltype_id":4,"snr":"0965","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1897,"wl_schooltype_id":4,"snr":"0966","wl_budget_id":16,"count":8,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1898,"wl_schooltype_id":4,"snr":"0967","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1899,"wl_schooltype_id":4,"snr":"0968","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1900,"wl_schooltype_id":4,"snr":"0969","wl_budget_id":16,"count":3,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1901,"wl_schooltype_id":4,"snr":"0970","wl_budget_id":16,"count":4,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1902,"wl_schooltype_id":4,"snr":"0971","wl_budget_id":16,"count":29,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1903,"wl_schooltype_id":4,"snr":"0972","wl_budget_id":16,"count":12,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1904,"wl_schooltype_id":4,"snr":"0973","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1905,"wl_schooltype_id":4,"snr":"0976","wl_budget_id":16,"count":2,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty empty
empty {"id":1906,"wl_schooltype_id":4,"snr":"0981","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1907,"wl_schooltype_id":4,"snr":"0983","wl_budget_id":16,"count":6,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty empty
empty {"id":1908,"wl_schooltype_id":4,"snr":"0987","wl_budget_id":16,"count":7,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1909,"wl_schooltype_id":4,"snr":"0989","wl_budget_id":16,"count":10,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1910,"wl_schooltype_id":4,"snr":"0993","wl_budget_id":16,"count":5,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty {"id":1911,"wl_schooltype_id":4,"snr":"0999","wl_budget_id":16,"count":13,"comment":"","year":"2018","asd":false,"created":"2018-05-11T09:36:05+00:00","modified":"2018-05-11T09:36:05+00:00"}
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
empty
{"id":6,"wl_schooltype_id":4,"snr":"9310","wl_budget_id":16,"count":5,"comment":"Sch\u00fcler W. T. Klasse 5a","year":"2018","created":"2018-03-15T07:21:46+00:00","modified":"2018-03-30T17:54:55+00:00"}

View File

@@ -0,0 +1,283 @@
snr;count;comment
0071;4;
0234;3;
0092;5;
0385;3;
0384;4;
0236;3;
0231;2;
0233;2;
0072;1;
0073;8;
0071;2;
0074;1;
0359;1;
0087;2;
0113;2;
0276;2;
0282;2;
0283;2;
0965;2;
0324;2;
0010;2;
0011;2;
0012;2;
0080;2;
0999;1;
0030;2;
0109;2;
0966;1;
0232;2;
0279;2;
0359;2;
0356;1;
0059;1;
0357;1;
0062;1;
0066;2;
0122;1;
0088;1;
0105;1;
0131;2;
0144;1;
0146;2;
0147;1;
0158;2;
0392;1;
0252;2;
0251;2;
0257;3;
0259;1;
0292;1;
0299;2;
0297;1;
0298;1;
0312;1;
0316;1;
0379;2;
0317;2;
0318;2;
0341;1;
0058;1;
0029;1;
0097;1;
0125;2;
0174;1;
0177;1;
0189;1;
0145;1;
0295;1;
0029;8;
0068;1;
0100;8;
0102;2;
0104;1;
0125;6;
0145;8;
0177;2;
0179;2;
0189;2;
0261;1;
0280;1;
0295;1;
0309;4;
0323;2;
0389;2;
0955;2;
0967;2;
0968;1;
0058;2;
0067;2;
0089;2;
0097;2;
0123;1;
0124;2;
0170;2;
0174;1;
0175;2;
0188;2;
0256;2;
0304;1;
0354;1;
0369;1;
0371;1;
0951;1;
0973;1;
0981;2;
0959;1;
0031;1;
0032;2;
0033;1;
0034;2;
0035;1;
0039;1;
0040;1;
0041;2;
0042;2;
0046;1;
0054;2;
0055;1;
0056;1;
0057;2;
0082;1;
0115;2;
0116;2;
0117;1;
0140;2;
0142;2;
0143;1;
0153;1;
0161;1;
0173;1;
0219;2;
0226;3;
0255;1;
0291;2;
0340;1;
0358;1;
0953;1;
0970;1;
1012;1;
0004;1;
0050;1;
0053;4;
0052;1;
0077;1;
0139;1;
0218;1;
0375;1;
0223;1;
0381;1;
0399;1;
0229;1;
0247;1;
0263;9;
0265;1;
0266;1;
0284;2;
0301;1;
0303;1;
0320;1;
0322;5;
0322;1;
0321;2;
0047;1;
0017;1;
0019;2;
0020;5;
0060;4;
0069;1;
0094;1;
0107;1;
0129;2;
0133;2;
0137;3;
0151;1;
0154;3;
0155;1;
0160;6;
0164;9;
0165;1;
0227;1;
0258;2;
0285;4;
0294;1;
0325;3;
0343;2;
0360;2;
0364;1;
0370;1;
0950;2;
0958;1;
0383;1;
0394;1;
0336;3;
0332;1;
0335;1;
0334;1;
0333;1;
0969;1;
0136;2;
0159;1;
0288;1;
0026;1;
0287;3;
0111;2;
0289;2;
0163;1;
0065;1;
0215;1;
0003;2;
0009;2;
0015;2;
0014;3;
0013;2;
0342;3;
0076;2;
0393;2;
0168;1;
0101;2;
0157;2;
0361;2;
0372;2;
0028;3;
0044;1;
0048;1;
0049;3;
0070;2;
0084;3;
0085;3;
0086;3;
0099;1;
0106;1;
0150;1;
0152;6;
0162;1;
0167;1;
0172;1;
0176;1;
0178;1;
0180;1;
0181;1;
0182;2;
0184;1;
0186;1;
0187;1;
0190;1;
0191;1;
0200;1;
0205;1;
0213;2;
0209;1;
0244;1;
0250;1;
0260;1;
0273;1;
0274;1;
0275;1;
0286;3;
0302;1;
0305;2;
0306;1;
0307;1;
0308;2;
0319;1;
0355;2;
0362;1;
0363;1;
0365;2;
0367;7;
0378;2;
0380;1;
0388;1;
0390;1;
0397;1;
0398;1;
0952;2;
0954;5;
0971;2;
0972;2;
0989;1;
0983;1;
0986;3;
0366;1;
1 snr count comment
2 0071 4
3 0234 3
4 0092 5
5 0385 3
6 0384 4
7 0236 3
8 0231 2
9 0233 2
10 0072 1
11 0073 8
12 0071 2
13 0074 1
14 0359 1
15 0087 2
16 0113 2
17 0276 2
18 0282 2
19 0283 2
20 0965 2
21 0324 2
22 0010 2
23 0011 2
24 0012 2
25 0080 2
26 0999 1
27 0030 2
28 0109 2
29 0966 1
30 0232 2
31 0279 2
32 0359 2
33 0356 1
34 0059 1
35 0357 1
36 0062 1
37 0066 2
38 0122 1
39 0088 1
40 0105 1
41 0131 2
42 0144 1
43 0146 2
44 0147 1
45 0158 2
46 0392 1
47 0252 2
48 0251 2
49 0257 3
50 0259 1
51 0292 1
52 0299 2
53 0297 1
54 0298 1
55 0312 1
56 0316 1
57 0379 2
58 0317 2
59 0318 2
60 0341 1
61 0058 1
62 0029 1
63 0097 1
64 0125 2
65 0174 1
66 0177 1
67 0189 1
68 0145 1
69 0295 1
70 0029 8
71 0068 1
72 0100 8
73 0102 2
74 0104 1
75 0125 6
76 0145 8
77 0177 2
78 0179 2
79 0189 2
80 0261 1
81 0280 1
82 0295 1
83 0309 4
84 0323 2
85 0389 2
86 0955 2
87 0967 2
88 0968 1
89 0058 2
90 0067 2
91 0089 2
92 0097 2
93 0123 1
94 0124 2
95 0170 2
96 0174 1
97 0175 2
98 0188 2
99 0256 2
100 0304 1
101 0354 1
102 0369 1
103 0371 1
104 0951 1
105 0973 1
106 0981 2
107 0959 1
108 0031 1
109 0032 2
110 0033 1
111 0034 2
112 0035 1
113 0039 1
114 0040 1
115 0041 2
116 0042 2
117 0046 1
118 0054 2
119 0055 1
120 0056 1
121 0057 2
122 0082 1
123 0115 2
124 0116 2
125 0117 1
126 0140 2
127 0142 2
128 0143 1
129 0153 1
130 0161 1
131 0173 1
132 0219 2
133 0226 3
134 0255 1
135 0291 2
136 0340 1
137 0358 1
138 0953 1
139 0970 1
140 1012 1
141 0004 1
142 0050 1
143 0053 4
144 0052 1
145 0077 1
146 0139 1
147 0218 1
148 0375 1
149 0223 1
150 0381 1
151 0399 1
152 0229 1
153 0247 1
154 0263 9
155 0265 1
156 0266 1
157 0284 2
158 0301 1
159 0303 1
160 0320 1
161 0322 5
162 0322 1
163 0321 2
164 0047 1
165 0017 1
166 0019 2
167 0020 5
168 0060 4
169 0069 1
170 0094 1
171 0107 1
172 0129 2
173 0133 2
174 0137 3
175 0151 1
176 0154 3
177 0155 1
178 0160 6
179 0164 9
180 0165 1
181 0227 1
182 0258 2
183 0285 4
184 0294 1
185 0325 3
186 0343 2
187 0360 2
188 0364 1
189 0370 1
190 0950 2
191 0958 1
192 0383 1
193 0394 1
194 0336 3
195 0332 1
196 0335 1
197 0334 1
198 0333 1
199 0969 1
200 0136 2
201 0159 1
202 0288 1
203 0026 1
204 0287 3
205 0111 2
206 0289 2
207 0163 1
208 0065 1
209 0215 1
210 0003 2
211 0009 2
212 0015 2
213 0014 3
214 0013 2
215 0342 3
216 0076 2
217 0393 2
218 0168 1
219 0101 2
220 0157 2
221 0361 2
222 0372 2
223 0028 3
224 0044 1
225 0048 1
226 0049 3
227 0070 2
228 0084 3
229 0085 3
230 0086 3
231 0099 1
232 0106 1
233 0150 1
234 0152 6
235 0162 1
236 0167 1
237 0172 1
238 0176 1
239 0178 1
240 0180 1
241 0181 1
242 0182 2
243 0184 1
244 0186 1
245 0187 1
246 0190 1
247 0191 1
248 0200 1
249 0205 1
250 0213 2
251 0209 1
252 0244 1
253 0250 1
254 0260 1
255 0273 1
256 0274 1
257 0275 1
258 0286 3
259 0302 1
260 0305 2
261 0306 1
262 0307 1
263 0308 2
264 0319 1
265 0355 2
266 0362 1
267 0363 1
268 0365 2
269 0367 7
270 0378 2
271 0380 1
272 0388 1
273 0390 1
274 0397 1
275 0398 1
276 0952 2
277 0954 5
278 0971 2
279 0972 2
280 0989 1
281 0983 1
282 0986 3
283 0366 1