From 9b24d1041b7c8e96962d1aa95dd4efba39f912b2 Mon Sep 17 00:00:00 2001 From: einhverfr Date: Wed, 3 Sep 2008 18:15:41 +0000 Subject: Adding button to generate entity control code git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2310 4979c152-3d1c-0410-bac9-87ea11338e46 --- LedgerSMB/Setting.pm | 13 ++----------- UI/Contact/contact.html | 12 +++++++++--- scripts/vendor.pl | 19 ++++++++++++++++++- 3 files changed, 29 insertions(+), 15 deletions(-) diff --git a/LedgerSMB/Setting.pm b/LedgerSMB/Setting.pm index 7da680c2..57630c97 100644 --- a/LedgerSMB/Setting.pm +++ b/LedgerSMB/Setting.pm @@ -47,23 +47,14 @@ your software. =cut package LedgerSMB::Setting; -use LedgerSMB; -use LedgerSMB::DBObject; +use base qw(LedgerSMB::DBObject); use strict; our $VERSION = '1.0.0'; -our @ISA = qw(LedgerSMB::DBObject); - -sub AUTOLOAD { - my $self = shift; - my $AUTOLOAD = $LedgerSMB::Setting::AUTOLOAD; - $AUTOLOAD =~ s/^.*:://; - $self->exec_method( procname => "setting_$AUTOLOAD", args => \@_ ); -} sub get { my $self = shift; - my $hashref = shift @{ $self->exec_method( procname => 'setting_get' ) }; + my $hashref = shift @{ $self->exec_method( funcname => 'setting_get' ) }; $self->merge( $hashref, 'value' ); } diff --git a/UI/Contact/contact.html b/UI/Contact/contact.html index 2d15adc1..341ef154 100644 --- a/UI/Contact/contact.html +++ b/UI/Contact/contact.html @@ -166,7 +166,13 @@ problems with multi-word single-quoted constructs in PI tags. -CT --> name = "control_code" value = control_code size = "20" - } ?>
+ } ?>
size = "20" } #' ?> - + + } ?> diff --git a/scripts/vendor.pl b/scripts/vendor.pl index 7e5c5371..ed415140 100644 --- a/scripts/vendor.pl +++ b/scripts/vendor.pl @@ -41,7 +41,6 @@ of the vendor informations. =cut - sub get { my ($request) = @_; @@ -69,6 +68,24 @@ sub add_location { } +sub generate_control_code { + my ($request) = @_; + my $vendor= LedgerSMB::DBObject::Vendor->new({base => $request, copy => 'all'}); + + my ($ref) = $vendor->call_procedure( + procname => 'setting_increment', + args => ['entity_control'] + ); + ($vendor->{control_code}) = values %$ref; + $vendor->{dbh}->commit; + if ($vendor->{meta_number}){ + edit($vendor); + } else { + _render_main_screen($vendor); + } + +} + =pod =over -- cgit v1.2.3