use Getopt::Long;
use C4::SIP::Sip::Constants qw(:all);
use C4::SIP::Sip;
use constant { LANGUAGE => '001' };
my ( $sec, $min, $hour, $day, $month, $year ) = localtime(time);
$year += 1900;
my $transaction_date = "$year$month$day $hour$min$sec";
my $transaction_date = C4::SIP::Sip::timestamp();
my $terminal_password = $login_password;
return q{} if ( $params->{optional} && !$value );
return $field_identifier . $value . '|';
return $field_identifier . (($value) ? $value : '') . '|';
}
sub help {
-