Lines 1113-1119
Return the value submitted in the type disclaimer workflow stage
Link Here
|
1113 |
|
1113 |
|
1114 |
sub get_type_disclaimer_value { |
1114 |
sub get_type_disclaimer_value { |
1115 |
my ($self) = @_; |
1115 |
my ($self) = @_; |
1116 |
my $attr = $self->illrequestattributes->find( { type => 'type_disclaimer_value' } ); |
1116 |
my $attr = $self->extended_attributes->find( { type => 'type_disclaimer_value' } ); |
1117 |
return if !$attr; |
1117 |
return if !$attr; |
1118 |
return $attr->value; |
1118 |
return $attr->value; |
1119 |
} |
1119 |
} |
Lines 1128-1134
Return the time the disclaimer was submitted in the type disclaimer workflow sta
Link Here
|
1128 |
|
1128 |
|
1129 |
sub get_type_disclaimer_date { |
1129 |
sub get_type_disclaimer_date { |
1130 |
my ($self) = @_; |
1130 |
my ($self) = @_; |
1131 |
my $attr = $self->illrequestattributes->find( { type => 'type_disclaimer_date' } ); |
1131 |
my $attr = $self->extended_attributes->find( { type => 'type_disclaimer_date' } ); |
1132 |
return if !$attr; |
1132 |
return if !$attr; |
1133 |
return $attr->value; |
1133 |
return $attr->value; |
1134 |
} |
1134 |
} |
1135 |
- |
|
|