summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-part_referral.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/tr-select-part_referral.html')
-rw-r--r--httemplate/elements/tr-select-part_referral.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/httemplate/elements/tr-select-part_referral.html b/httemplate/elements/tr-select-part_referral.html
deleted file mode 100644
index 0108388bc..000000000
--- a/httemplate/elements/tr-select-part_referral.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<%
- my( $refnum, %opt ) = @_;
-
- $opt{'part_referrals'} ||=
- [ FS::part_referral->all_part_referral( 1 ) ]; #1: include global
-
- my $r = qq!<font color="#ff0000">*</font>&nbsp;!;
-
-%>
-
-<% if ( scalar( @{$opt{'part_referrals'}} ) == 0 ) {
- eidiot "You have not created any advertising sources. You must create at least one advertising source before adding a customer. Go to ". popurl(2). "browse/part_referral.html and create one or more advertising sources.";
- } elsif ( scalar( @{$opt{'part_referrals'}} ) == 1 ) {
-%>
-
- <INPUT TYPE="hidden" NAME="refnum" VALUE="<%= $opt{'part_referrals'}->[0]->refnum %>">
-
-<% } else { %>
-
- <TR>
- <TH ALIGN="right"><%=$r%>Advertising source</TH>
- <TD>
- <%= include( '/elements/select-part_referral.html', $refnum,
- 'part_referrals' => $opt{'part_referrals'},
- )
- %>
- </TD>
- </TR>
-
-<% } %>