X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;ds=sidebyside;f=bin%2Fimport_ward_data;h=15eec559037cb237142eb5fabe20a20aa1966cc6;hb=bbdf6c1944b89d7b96c85f4e69329fdb3d6fd9fb;hp=a11906b99977bef3d8201971d9be73fd9c5f0f1b;hpb=c0138a3e56518fd73dfe4d93c30d8e36ce062d87;p=eq%2F.git diff --git a/bin/import_ward_data b/bin/import_ward_data index a11906b..15eec55 100755 --- a/bin/import_ward_data +++ b/bin/import_ward_data @@ -559,6 +559,7 @@ sub update_tc_scheduling_priority_table $sth2->execute or die "-E- DB error: $DBI::errstr\n"; } } + &remove_obsolete_scheduling_priority("tc_individual"); # families # TODO: make steward flexible with a setting in the config file @@ -577,6 +578,7 @@ sub update_tc_scheduling_priority_table $sth2->execute or die "-E- DB error: $DBI::errstr\n"; } } + &remove_obsolete_scheduling_priority("tc_family"); # companionships # TODO: make steward flexible with a setting in the config file @@ -595,7 +597,35 @@ sub update_tc_scheduling_priority_table $sth2->execute or die "-E- DB error: $DBI::errstr\n"; } } + &remove_obsolete_scheduling_priority("tc_companionship"); +} + +sub remove_obsolete_scheduling_priority +{ + my $table_name = $_[0]; + + #print "\n-> Cleaning $table_name\n"; + #$sth = $dbh->prepare("SELECT scheduling_priority FROM $table_name where scheduling_priority IS NOT NULL AND valid=0"); + $sth = $dbh->prepare("SELECT * FROM $table_name WHERE valid=0"); + $sth->execute or die "-E- DB error: $DBI::errstr\n"; + while($sqlhashref = $sth->fetchrow_hashref) { + $scheduling_priority = $sqlhashref->{scheduling_priority}; + $individual = $sqlhashref->{individual}; + #$name = $sqlhashref->{name}; + if ($scheduling_priority != "NULL") { + #print "$name\n"; + # set scheduling_priority to NULL + #print "UPDATE $table_name SET scheduling_priority=NULL WHERE individual=$individual\n"; + $sth2 = $dbh->prepare("UPDATE $table_name SET scheduling_priority=NULL WHERE individual=$individual"); + $sth2->execute or die "-E- DB error: $DBI::errstr\n"; + + # remove entry from tc_scheduling_priority + #print "DELETE FROM tc_scheduling_priority WHERE scheduling_priority=$scheduling_priority\n"; + $sth2 = $dbh->prepare("DELETE FROM tc_scheduling_priority WHERE scheduling_priority=$scheduling_priority"); + $sth2->execute or die "-E- DB error: $DBI::errstr\n"; + } + } } ###################################################################### @@ -639,7 +669,7 @@ print "\n-> Processing all ward data files in $datadir\n"; ################################################### # Parse Ward Data Files -&csv_to_hash("$datadir/Organization\ class\ per\ member.csv", \%organization_class_data); +&optional_csv_to_hash("$datadir/Organization\ class\ per\ member.csv", \%organization_class_data); &csv_to_hash("$datadir/Membership.csv",\%membership_data); &csv_to_hash("$datadir/HomeTeaching.csv",\%hometeaching_data); &csv_to_hash("$datadir/Organization.csv",\%organization_data); @@ -660,7 +690,7 @@ if($opt_v) { if($opt_s) { $dbh->disconnect(); exit; } -# Now update the various eq DB tables +# Now update the various DB tables &update_tc_calling_table(); &update_tc_individual_table(); &update_tc_companionship_table();