blob: 1cd201360880f368fd6a9d6aa9c7a2ddc8b7c3b7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
 | <% include("/elements/header.html", "Export Listing") %>
Provisioning services to external machines, databases and APIs.<BR><BR>
<A HREF="<% $p %>edit/part_export.cgi"><I>Add a new export</I></A><BR><BR>
<SCRIPT>
function part_export_areyousure(href) {
  if (confirm("Are you sure you want to delete this export?") == true)
    window.location.href = href;
}
</SCRIPT>
<% include('/elements/table-grid.html') %>
% my $bgcolor1 = '#eeeeee';
%   my $bgcolor2 = '#ffffff';
%   my $bgcolor = '';
  <TR>
    <TH COLSPAN=2 CLASS="grid" BGCOLOR="#cccccc">Export</TH>
    <TH CLASS="grid" BGCOLOR="#cccccc">Options</TH>
  </TR>
% foreach my $part_export ( sort { 
%     $a->getfield('exportnum') <=> $b->getfield('exportnum')
%   } qsearch('part_export',{})
% ) {
%   if ( $bgcolor eq $bgcolor1 ) {
%     $bgcolor = $bgcolor2;
%   } else {
%     $bgcolor = $bgcolor1;
%   }
    <TR>
      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><A HREF="<% $p %>edit/part_export.cgi?<% $part_export->exportnum %>"><% $part_export->exportnum %></A></TD>
      <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $part_export->exporttype %> to <% $part_export->machine %> (<A HREF="<% $p %>edit/part_export.cgi?<% $part_export->exportnum %>">edit</A> | <A HREF="javascript:part_export_areyousure('<% $p %>misc/delete-part_export.cgi?<% $part_export->exportnum %>')">delete</A>)</TD>
      <TD CLASS="inv" BGCOLOR="<% $bgcolor %>">
        <% itable() %>
%         my %opt = $part_export->options;
%         foreach my $opt ( keys %opt ) { 
  
            <TR>
              <TD ALIGN="right" VALIGN="top" WIDTH="33%"><% $opt %>: </TD>
              <TD ALIGN="left" WIDTH="67%"><% encode_entities($opt{$opt}) %></TD>
            </TR>
%         } 
  
        </TABLE>
      </TD>
    </TR>
% } 
</TABLE>
<% include('/elements/footer.html') %>
<%init>
die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
</%init>
 |