Lines 290-301
foreach my $guarantor (@guarantors) {
Link Here
|
290 |
} |
290 |
} |
291 |
} |
291 |
} |
292 |
|
292 |
|
293 |
my @valid_relationships = split(/\|/, C4::Context->preference('borrowerRelationship'), -1); |
293 |
my @valid_relationships = split( /\|/, C4::Context->preference('borrowerRelationship'), -1 ); |
294 |
if (@valid_relationships) { |
294 |
if (@valid_relationships) { |
295 |
my @new_guarantor_id = $input->multi_param('new_guarantor_id'); |
295 |
my @new_guarantor_id = $input->multi_param('new_guarantor_id'); |
296 |
my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship'); |
296 |
my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship'); |
297 |
|
297 |
|
298 |
for ( my $i = 0 ; $i < scalar @new_guarantor_id; $i++ ) { |
298 |
for ( my $i = 0 ; $i < scalar @new_guarantor_id ; $i++ ) { |
299 |
my $guarantor_id = $new_guarantor_id[$i]; |
299 |
my $guarantor_id = $new_guarantor_id[$i]; |
300 |
my $relationship = $new_guarantor_relationship[$i]; |
300 |
my $relationship = $new_guarantor_relationship[$i]; |
301 |
|
301 |
|
302 |
- |
|
|