6 'name_singular' => #singular name for the record
7 # (preferred, will be pluralized automatically)
8 'name' => #name for the record
9 # (deprecated, will be pluralized simplistically)
10 'table' => #database table
12 #? 'primary_key' => #required when the dbdef doesn't know...???
17 #listref - each item is a literal column name (or method) or hashref
19 #if not specified all columns (except for the primary key) will be editable
22 { 'field' => 'another_columname',
23 'type' => 'text', #text
29 #selectlayers (can now use after a tablebreak-tr-title... but not inside columnstart/columnnext/columnend)
35 #hidden - hidden value from object
36 #fixed - display fixed value from object or here
39 'value' => 'Y', #for checkbox, title, fixed, hidden
41 'onchange' => 'javascript_function',
43 'include_opt_callback' => sub { my $object = @_;
44 ( 'option' => 'value', );
47 'm2name_table' => 'table_name',
48 'm2name_namecol' => 'name_column',
51 #'m2m_srccol' => #opt, if not the same as this table
52 'm2m_dstcol' => #required for now, eventuaully opt, if not the same as target table
56 'm2_label' => 'Label', #
57 'm2_new_default' => \@table_name_objects, #default
60 'm2_error_callback' => sub { my($cgi, $object) = @_; },
61 'm2_remove_warnings' => \%warnings, #hashref of warning
64 'm2_new_js' => 'function_name', #javascript function called
65 #on spawned rows (one arg:
67 'm2_remove_js' => 'function_name', #js function called when
68 #a row is deleted (three
71 #layer_fields & layer_values_callback only for selectlayer
73 'fieldname' => 'Label',
76 type =>'text', #text, money
79 'layer_values_callback' =>
81 my( $cgi, $object ) = @_;
82 { 'layer' => { 'fieldname' => 'current_value',
83 'fieldname2' => 'field2value',
86 'layer2' => { 'l2fieldname' => 'l2value',
95 'menubar' => '', #menubar arrayref
99 'agent_null' => 1, #if true, always allow no-agentnum globals
100 'agent_null_right' => 'Access Right Name',
101 'agent_clone_extra_sql' => '', #if provided, this overrides the extra_sql
102 #implementing agent virt, for clone
103 #operations. i.e. pass "1=1" to allow
106 'viewall_dir' => '', #'search' or 'browse', defaults to 'search'
108 # overrides default popurl(1)."process/$table.html"
109 'post_url' => popurl(1).'process/something',
111 # optional link to delete this object; primary key will be appended
112 'delete_url' => $p.'misc/delete-something.html?',
114 #we're in a popup (no title/menu/searchboxes)
117 #we're embedded (rows only: no header at all, no html_init, no error
118 # display, no <FORM>, no hidden fields for table name or primary key, no
119 # display of primary key, no submit button, no html_foot, no footer)
120 'embed' => $object, #need to pass the object
121 'tablenum' => 4, #need to specify a table number when using multiple
122 #embedded edits on a page (and m2 stuff)
124 #don't show the primary key label and value
125 'no_pkey_display' => 1,
131 'body_etc' => '', # Additional BODY attributes, i.e. onLoad=""
133 'html_init' => '', #after the header/menubar
135 'form_init' => '', #after html_init, error and the opening <FORM>, but
136 #before any other form contents
138 'html_table_class' => '', #HTML <TABLE CLASS=
140 #string or coderef of additional HTML to add before </TABLE>
141 'html_table_bottom' => '',
143 #after </TABLE> but before the submit
144 'html_bottom' => '', #string
145 'html_bottom' => sub {
151 #javascript function name, will be called with form name as arg
152 'onsubmit' => 'check_form_data',
154 #at the very bottom (well, as low as you can go from here)
158 # initialization callbacks
161 ###global callbacks, always run if provided
163 #after decoding long CGI "redirect=" responses but
164 # before object creation/search
165 # (useful if you have a long form that might trigger redirect= and you need
166 # to do things with $cgi params - they're not decoded in the calling
168 'begin_callback' = sub { my( $cgi, $fields_listref, $opt_hashref ) = @_; },
170 #after the mode-specific object creation/search
171 'end_callback' = sub { my( $cgi, $object, $fields_listref, $opt_hashref ) = @_; },
173 ###mode-specific callbacks. one (and only one) of these four is called
176 'new_callback' => sub { my( $cgi, $object, $fields_listref, $opt_hashref ) = @_; },
179 'edit_callback' => sub { my( $cgi, $object, $fields_listref, $opt_hashref ) = @_; },
181 #run when re-displaying with an error
182 'error_callback' => sub { my( $cgi, $object, $fields_listref, $opt_hashref ) = @_; },
185 'clone_callback' => sub { my( $cgi, $object, $fields_listref, $opt_hashref ) = @_; },
187 ###callbacks called in new mode only
189 # returns a hashref for the new object
190 'new_hashref_callback'
192 # returns the new object iself (otherwise, ->new is called)
193 'new_object_callback'
197 #run before display to return a different value
198 'value_callback' => sub { my( $columname, $value ) = @_; },
200 #run before display to manipulate element of the 'fields' arrayref
201 'field_callback' => sub { my( $cgi, $object, $field_hashref ) = @_; },
207 % unless ( $opt{embed} ) {
209 % my $title = $opt{action}. ' '. ( $opt{name} || $opt{'name_singular'} );
211 % my $viewall_url = $p . ( $opt{'viewall_dir'} || 'search' ) . "/$table.html";
212 % $viewall_url = $opt{'viewall_url'} if $opt{'viewall_url'};
215 % if ( $opt{'menubar'} ) {
216 % @menubar = @{ $opt{'menubar'} };
218 % my $items = $opt{'name'} ? $opt{'name'}.'s' : PL($opt{'name_singular'});
220 % "View all $items" => $viewall_url,
224 <% include('/elements/header'. ( $opt{popup} ? '-popup' : '' ). '.html',
226 include( '/elements/menubar.html', @menubar ),
231 <% defined($opt{'html_init'})
232 ? ( ref($opt{'html_init'})
233 ? &{$opt{'html_init'}}()
239 <% include('/elements/error.html') %>
241 % my $url = $opt{'post_url'} || popurl(1)."process/$table.html";
243 <FORM NAME = "edit_topform"
245 ACTION = "<% $url %>"
246 <% $opt{onsubmit} ? 'onSubmit="return '.$opt{onsubmit}.'(this)"' : '' %>
249 <INPUT TYPE="hidden" NAME="svcdb" VALUE="<% $table %>">
250 <INPUT TYPE="hidden" NAME="<% $pkey %>" VALUE="<% $clone ? '' : $object->$pkey() %>">
252 <% defined($opt{'form_init'})
253 ? ( ref($opt{'form_init'})
254 ? &{$opt{'form_init'}}()
260 % unless ( $opt{'no_pkey_display'} ) {
263 <% ( $opt{labels} && exists $opt{labels}->{$pkey} )
264 ? $opt{labels}->{$pkey}
268 #<% ( !$clone && $object->$pkey() ) || "(NEW)" %>
274 % my $tablenum = $opt{'tablenum'} || 0;
275 <TABLE ID="TableNumber<% $tablenum++ %>"
276 <% $opt{html_table_class} ? 'CLASS="'. $opt{html_table_class}. '"'
277 : 'BGCOLOR="#cccccc" BORDER=0 CELLSPACING=0'
282 % my @g_row_stack = ();
283 % foreach my $f ( map { ref($_) ? $_ : {'field'=>$_} }
287 % my $trash = &{ $opt{'field_callback'} }( $cgi, $object, $f )
288 % if $opt{'field_callback'};
290 % my $field = $f->{'field'};
291 % my $type = $f->{'type'} ||= 'text';
293 % my $label = ( $opt{labels} && exists $opt{labels}->{$field} )
294 % ? $opt{labels}->{$field}
297 % my $onchange = $f->{'onchange'};
299 % my $layer_values = {};
300 % $layer_values = &{ $f->{'layer_values_callback'} }( $cgi, $object )
301 % if $f->{'layer_values_callback'}
302 % && ! $f->{'m2name_table'}
303 % && ! $f->{'o2m_table'}
304 % && ! $f->{'m2m_method'};
306 % warn "layer values: ". Dumper($layer_values)
309 % my %include_common = (
311 % #text and derivitives
312 % 'size' => $f->{'size'},
313 % 'maxlength' => $f->{'maxlength'},
314 % 'prefix' => $f->{'prefix'},
315 % 'postfix' => $f->{'postfix'},
318 % 'rows' => $f->{'rows'},
319 % 'cols' => $f->{'cols'},
321 % #checkbox, title, fixed, hidden
322 % #& deprecated weird value hashref used only by reason.html
323 % 'value' => $f->{'value'},
326 % 'noescape' => $f->{'noescape'},
329 % 'options' => $f->{'options'},
330 % 'labels' => $f->{'labels'},
331 % 'multiple' => $f->{'multiple'},
332 % 'label_showkey' => $f->{'label_showkey'},
333 % 'disable_empty' => $f->{'disable_empty'},
335 % 'reason_class' => $f->{'reason_class'},
337 % 'viewall_right' => $f->{'viewall_right'},
340 % 'layer_fields' => $f->{'layer_fields'},
341 % 'layer_values' => $layer_values,
342 % 'html_between' => $f->{'html_between'},
344 % #umm. for select-agent_type at least
345 % 'disabled' => $f->{'disabled'},
346 % 'fixed' => $f->{'fixed'},
347 % 'label_callback'=> $f->{'label_callback'},
348 % 'element_etc' => $f->{'element_etc'},
350 % #for select-ticketing_queueid at least
351 % 'post_options' => $f->{'post_options'},
354 % 'colspan' => $f->{'colspan'},
355 % 'required' => $f->{'required'},
358 % 'custnum' => $f->{'custnum'},
359 % 'prospectnum' => $f->{'prospectnum'},
362 % $include_common{$_} = $f->{$_} foreach grep exists($f->{$_}),
363 % qw( js_only html_only select_only layers_only cell_style ),#selectlayers,?
364 % qw( empty_label ), # select-*
365 % qw( value_col compare_sub order_by addl_from ), # select-table
366 % qw( table name_col ), #(select,checkboxes)-table
367 % qw( target_table link_table ), #checkboxes-table
368 % qw( hashref agent_virt agent_null agent_null_right ),#*-table
369 % qw( formatted_value ), #fixed
370 % qw( country ), #select-country
371 % qw( width height config ), #htmlarea
372 % qw( alt_format ), #select-cust_location
373 % qw( classnum ), # select-inventory_item
374 % qw( aligned ), # columnstart
378 % $include_common{$_} = ref( $f->{$_} ) eq 'CODE'
379 % ? &{ $f->{$_} }( $cgi, $object ) #, $f )
381 % foreach grep exists($f->{$_}), qw( extra_sql );
383 % if ( $type eq 'tablebreak-tr-title' ) {
384 % $include_common{'table_id'} = 'TableNumber'. $tablenum++;
386 % if ( $type eq 'tablebreak-tr-title' || $type eq 'title' ) {
387 % $include_common{'colspan'} = $f->{colspan} if $f->{colspan};
390 % if ( $f->{include_opt_callback} ) {
391 % %include_common = ( %include_common,
392 % &{ $f->{include_opt_callback} }( $object )
396 % my $layer_prefix_on = '';
398 % my $include_sub = sub {
401 % my $fieldnum = delete $opt{'fieldnum'};
403 % my $include = $type;
404 % $include = "input-$include" if $include =~ /^(text|money|percentage)$/;
405 % $include = "tr-$include" unless $include =~ /^(hidden|tablebreak|column)/;
407 % $include_common{'layer_prefix'} = "$field$fieldnum."
408 % if $layer_prefix_on;
411 % ( "/elements/$include.html",
412 % 'field' => "$field$fieldnum",
413 % 'id' => "$field$fieldnum", #separate?
414 % 'label_id' => $field."_label$fieldnum", #don't want field0_label0...
419 % if ( $include eq 'tr-input-date-field' ) {
420 % # it's either hacking it here, or changing a lot more stuff
422 % "/elements/$include.html", {
424 % 'value' => $opt{curr_value},
426 % 'noinit' => $f->{noinit},
427 % 'required' => $f->{'required'},
435 % my $column_sub = sub {
438 % my $column = delete($opt{field});
439 % my $fieldnum = delete($opt{fieldnum});
440 % my $include = delete($opt{type}) || 'text';
441 % $include = "input-$include" if $include =~ /^(text|money|percentage)$/;
443 % ( "/elements/$include.html",
444 % 'field' => $field.'__'.$column.$fieldnum,
445 % 'id' => $field.'__'.$column.$fieldnum,
446 % 'layer_prefix' => $field.'__'.$column.$fieldnum.".",
448 % ? ('cell_style' => 'border-top:1px solid black')
456 % unless ( $type =~ /^column/ ) {
457 % $g_row = 1 if $type eq 'tablebreak-tr-title';
459 % $g_row++ if $type eq 'title';
460 % $g_row += scalar( @{ $f->{options} } )-1 if $type eq 'radio';
462 % if ( $type eq 'columnstart' ) {
463 % push @g_row_stack, $g_row;
465 % #} elsif ( $type eq 'columnnext' ) {
466 % } elsif ( $type eq 'columnend' ) {
467 % $g_row = pop @g_row_stack;
473 % my $curr_value = '';
474 % if ( $f->{'m2name_table'} || $f->{'o2m_table'} || $f->{'m2m_method'} ) {
477 % if ( $f->{'m2name_table'} ) {
478 % $table = $f->{'m2name_table'};
479 % $col = $f->{'m2name_namecol'};
480 % } elsif ( $f->{'o2m_table'} ) {
481 % $table = $f->{'o2m_table'};
482 % $col = dbdef->table($f->{'o2m_table'})->primary_key;
483 % } elsif ( $f->{'m2m_method'} ) {
484 % $table = $f->{'m2m_method'};
485 % $col = $f->{'m2m_dstcol'};
488 % $layer_prefix_on = 1;
489 % #print out the fields for the existing m2s
491 % if ( $mode eq 'error' ) {
492 % @existing = &{ $f->{'m2_error_callback'} }( $cgi, $object );
493 % } elsif ( $object->$pkey() ) { # $mode eq 'edit'||'clone'
494 % @existing = $object->$table();
495 % warn scalar(@existing). " from $object->$table: ". join('/', @existing)
497 % } elsif ( $f->{'m2_new_default'} ) { # && $mode eq 'new'
498 % @existing = @{ $f->{'m2_new_default'} };
500 % foreach my $name_obj ( @existing ) {
502 % my $ex_label = '<INPUT TYPE="button" VALUE="X" TITLE="Remove this '.
503 % lc($f->{'m2_label'}).
504 % qq(" onClick="remove_$field($fieldnum);").
505 % ' STYLE="color:#ff0000;font-weight:bold;'.
506 % 'padding-left:2px;padding-right:2px"'.
507 % '> '. ($f->{'m2_label'} || $field ). ' ';
509 % if ( $f->{'layer_values_callback'} ) {
510 % my %switches = ( 'mode' => $mode );
512 % &{ $f->{'layer_values_callback'} }( $cgi, $name_obj, \%switches );
514 % warn "layer values: ". Dumper($layer_values)
517 % my @existing = &{ $include_sub }(
518 % 'label' => $ex_label,
519 % 'fieldnum' => $fieldnum,
520 % 'curr_value' => $name_obj->$col(),
521 % 'onchange' => $onchange,
522 % 'layer_values' => $layer_values,
523 % 'cell_style' => ( $fieldnum ? 'border-top:1px solid black' : '' ),
525 % $existing[0] =~ s(^/elements/tr-)(/elements/);
526 % my @label = @existing;
527 % $label[0] = '/elements/tr-td-label.html';
529 <% include( @label ) %>
530 <TD COLSPAN="<% $f->{'colspan'} || 1 %>">
531 <% include( @existing ) %>
534 % if ( $f->{'m2_fields'} ) {
535 % foreach my $c ( @{ $f->{'m2_fields'} } ) {
536 % my $column = $c->{field};
537 % my @column = &{ $column_sub }( %$c,
538 % 'fieldnum' => $fieldnum,
539 % 'curr_value' => $name_obj->$column()
542 <TD id='<% $field %>__<% $column %>_label<% $fieldnum %>'
543 style='text-align:right;vertical-align:top;
544 border-top:1px solid black;padding-top:5px;'>
545 <% $c->{'label'} || '' %>
547 <TD style='border-top:1px solid black;padding-top:3px;'>
548 <% include( @column ) %>
558 % #$field .= $fieldnum;
559 % $onchange .= "\nspawn_$field(what);";
561 % if ( $f->{curr_value_callback} ) {
562 % $curr_value = &{ $f->{curr_value_callback} }( $cgi, $object, $field ),
564 % $curr_value = $object->$field() if $field;
566 % $curr_value = &{ $opt{'value_callback'} }( $f->{'field'}, $curr_value )
567 % if $opt{'value_callback'} && $mode ne 'error';
570 % my @include = &{ $include_sub }(
572 % 'fieldnum' => $fieldnum,
573 % 'curr_value' => $curr_value,
574 % 'object' => $object,
576 % 'onchange' => $onchange,
577 % ( $fieldnum ? ('cell_style' => 'border-top:1px solid black') : () ),
580 % if ( $f->{'m2name_table'} || $f->{'o2m_table'} || $f->{'m2m_method'} ) {
581 % $include[0] =~ s(^/elements/tr-)(/elements/);
582 % my @label = @include;
583 % $label[0] = '/elements/tr-td-label.html';
585 <% include( @label ) %>
586 <TD COLSPAN="<% $f->{'colspan'} || 1 %>">
587 <% include( @include ) %>
590 % if ( $f->{'m2_fields'} ) {
591 % foreach my $c ( @{ $f->{'m2_fields'} } ) {
592 % my $column = $c->{field};
593 % my @column = &{ $column_sub }( %$c, 'fieldnum' => $fieldnum );
595 <TD id='<% $field %>__<% $column %>_label<% $fieldnum %>'
596 style='text-align:right;vertical-align:top;
597 border-top:1px solid black;padding-top:5px;'>
598 <% $c->{'label'} || '' %>
600 <TD style='border-top:1px solid black;padding-top:3px;'>
601 <% include( @column ) %>
610 <% include( @include ) %>
613 % if ( $f->{'m2name_table'} || $f->{'o2m_table'} || $f->{'m2m_method'} ) {
615 <SCRIPT TYPE="text/javascript">
617 var <%$field%>_rownum = <% $g_row %>;
618 var <%$field%>_fieldnum = <% $fieldnum %>;
620 function spawn_<%$field%>(what) {
622 // only spawn if we're the last element... return if not
624 var field_regex = /(\d+)(_[a-z_]+)?$/;
625 var match = field_regex.exec(what.name);
627 alert(what.name + " didn't match for " + what);
630 if ( match[1] != <%$field%>_fieldnum ) {
634 // change the label on the last entry & add a remove button
635 var prev_label = document.getElementById('<% $field %>_label' + <%$field%>_fieldnum );
636 prev_label.innerHTML = '<INPUT TYPE="button" VALUE="X" TITLE="Remove this <% lc($f->{'m2_label'}) %>" onClick="remove_<% $field %>(' + <%$field%>_fieldnum + ');" STYLE="color:#ff0000;font-weight:bold;padding-left:2px;padding-right:2px" > <% $f->{'m2_label'} || $field %>';
638 <%$field%>_fieldnum++;
642 % $include[0] =~ s(^/elements/tr-)(/elements/);
643 % my @layer_opt = ( @include,
644 % 'field' => $field."MAGIC_NUMBER",
645 % 'id' => $field."MAGIC_NUMBER",
646 % 'layer_prefix' => $field."MAGIC_NUMBER.",
648 % warn @layer_opt if $opt{'debug'};
650 var newrow = <% include(@layer_opt, html_only=>1) |js_string %>;
652 % #until the rest have html/js_only
653 % if ( $type eq 'selectlayers' || $type =~ /^select-cgp_rule_/ ) {
654 var newfunc = <% include(@layer_opt, js_only=>1) |js_string %>;
659 // substitute in the new field name
660 var magic_regex = /MAGIC_NUMBER/g;
661 newrow = newrow.replace( magic_regex, <%$field%>_fieldnum );
662 newfunc = newfunc.replace( magic_regex, <%$field%>_fieldnum );
665 if (window.ActiveXObject) {
666 window.execScript(newfunc);
667 } else { /* (window.XMLHttpRequest) */
668 //window.eval(newfunc);
669 setTimeout(newfunc, 0);
674 //hmm, can't use selectlayers after a tablebreak-title for now
675 var table = document.getElementById('TableNumber<% $tablenum-1 %>');
677 var row = table.insertRow(<%$field%>_rownum++);
679 var label_cell = document.createElement('TD');
681 label_cell.id = '<% $field %>_label' + <%$field%>_fieldnum;
683 label_cell.style.textAlign = "right";
684 label_cell.style.verticalAlign = "top";
685 label_cell.style.borderTop = "1px solid black";
686 label_cell.style.paddingTop = "5px";
688 label_cell.innerHTML = '<% $label %>';
690 row.appendChild(label_cell);
692 var widget_cell = document.createElement('TD');
694 widget_cell.style.borderTop = "1px solid black";
695 widget_cell.style.paddingTop = "3px";
696 widget_cell.colSpan = "<% $f->{'colspan'} || 1 %>";
698 widget_cell.innerHTML = newrow;
700 row.appendChild(widget_cell);
702 % if ( $f->{'m2_fields'} ) {
703 % foreach my $c ( @{ $f->{'m2_fields'} } ) {
704 % my $column = $c->{field};
705 % my @column = &{ $column_sub }(%$c, 'fieldnum' => 'MAGIC_NUMBER');
707 var column = <% include(@column, html_only=>1) |js_string %>;
708 column = column.replace( magic_regex, <%$field%>_fieldnum );
710 var column_label = document.createElement('TD');
712 '<% $field %>__<% $column %>_label' + <%$field%>_fieldnum;
714 column_label.style.textAlign = "right";
715 column_label.style.verticalAlign = "top";
716 column_label.style.borderTop = "1px solid black";
717 column_label.style.paddingTop = "5px";
719 column_label.innerHTML = '<% $c->{'label'} || '' %>';
721 row.appendChild(column_label);
723 var column_widget = document.createElement('TD');
725 column_widget.style.borderTop = "1px solid black";
726 column_widget.style.paddingTop = "3px";
728 column_widget.innerHTML = column;
730 row.appendChild(column_widget);
735 % if ( $f->{'m2_new_js'} ) {
736 // take out items selected in previous dropdowns
737 var new_element = document.getElementById("<%$field%>" + <%$field%>_fieldnum );
738 <% $f->{'m2_new_js'} %>(new_element);
740 if ( new_element.length < 2 ) {
741 //just the ** Select new **, so don't display the row
742 row.style.display = 'none';
748 function remove_<%$field%>(remove_fieldnum) {
749 //alert("remove <%$field%> " + remove_fieldnum);
750 var select = document.getElementById('<%$field%>' + remove_fieldnum);
753 alert("can't find element <%$field%>" + remove_fieldnum);
757 % my $warnings = $f->{'m2_remove_warnings'};
759 var sel_value = select.options[select.selectedIndex].value;
760 % foreach my $value ( keys %$warnings ) {
761 if ( sel_value == '<% $value %>' ) {
762 if ( ! confirm( <% $warnings->{$value} |js_string %> ) ) {
769 select.disabled = 'disabled'; // this seems to prevent it from being submitted on tested browsers so far (IE, moz, konq at least)
770 var label_td = document.getElementById('<%$field%>_label' + remove_fieldnum );
771 label_td.parentNode.style.display = 'none';
773 % if ( $f->{m2_remove_js} ) {
774 var opt = select.options[select.selectedIndex];
775 <% $f->{m2_remove_js} %>( opt.value, opt.text, 'no_match');
786 <% ref( $opt{'html_table_bottom'} )
787 ? &{ $opt{'html_table_bottom'} }( $object )
788 : $opt{'html_table_bottom'}
793 <% ref( $opt{'html_bottom'} )
794 ? &{ $opt{'html_bottom'} }( $object )
795 : $opt{'html_bottom'}
798 % unless ($opt{'embed'}) {
802 % unless ($opt{'no_submit'}) {
803 <INPUT TYPE = "submit"
805 VALUE = "<% ( !$clone && $object->$pkey() )
807 : "Add ". ($opt{'name'} || $opt{'name_singular'})
810 % if ( $opt{'delete_url'} and $object->get($pkey) ) {
811 % my $delete_msg = 'Delete this '.
812 % ($opt{'name_singular'} || $opt{'name'});
813 % my $delete_url = $opt{'delete_url'};
814 % $delete_url .= '?' unless $delete_url =~ /\?/;
815 % $delete_url .= $object->get($pkey);
816 <SCRIPT TYPE="text/javascript">
817 function confirm_delete() {
818 if(confirm(<% $delete_msg . '?' |js_string %>)) {
819 window.location.href = <% $delete_url |js_string %>;
823 <INPUT TYPE = "button"
824 VALUE = "<% $delete_msg |h %>"
825 onclick = "confirm_delete()">
831 <% ref( $opt{'html_foot'} )
832 ? &{ $opt{'html_foot'} }( $object )
836 <% include("/elements/footer.html") %>
843 my $curuser = $FS::CurrentUser::CurrentUser;
845 #false laziness w/process.html
846 my $table = $opt{'table'};
847 my $class = "FS::$table";
848 my $pkey = dbdef->table($table)->primary_key; #? $opt{'primary_key'} ||
849 my $fields = $opt{'fields'}
850 #|| [ grep { $_ ne $pkey } dbdef->table($table)->columns ];
851 || [ grep { $_ ne $pkey } fields($table) ];
852 #my @actualfields = map { ref($_) ? $_->{'field'} : $_ } @$fields;
856 if ( $opt{'embed'} ) {
858 $object = $opt{'embed'};
859 $mode = $cgi->param('error')
867 #$m->comp('/elements/handle_uri_query');
868 if ( $cgi->param('redirect') ) {
869 my $session = $cgi->param('redirect');
870 my $pref = $curuser->option("redirect$session");
871 die "unknown redirect session $session\n" unless length($pref);
872 $cgi = new CGI($pref);
875 &{$opt{'begin_callback'}}( $cgi, $fields, \%opt )
876 if $opt{'begin_callback'};
880 'extra_sql' => ( $opt{'agent_virt'}
881 ? ' AND '. $curuser->agentnums_sql(
882 'null_right' => $opt{'agent_null_right'}
888 if ( $cgi->param('error') ) {
892 $object = $class->new( {
893 map { $_ => scalar($cgi->param($_)) } fields($table)
896 &{$opt{'error_callback'}}( $cgi, $object, $fields, \%opt )
897 if $opt{'error_callback'};
899 } elsif ( $cgi->param('clone') =~ /^(\d+)$/ ) {
905 $qsearch{'extra_sql'} = ' AND '. $opt{'agent_clone_extra_sql'}
906 if $opt{'agent_clone_extra_sql'};
908 $object = qsearchs({ %qsearch, 'hashref' => { $pkey => $clone } })
909 or die "$pkey $clone not found in $table";
911 &{$opt{'clone_callback'}}( $cgi, $object, $fields, \%opt )
912 if $opt{'clone_callback'};
916 $opt{action} ||= 'Add';
918 } elsif ( $cgi->keywords || $cgi->param($pkey) ) { #editing
923 if ( $cgi->param($pkey) ) {
924 $value = $cgi->param($pkey)
926 my( $query ) = $cgi->keywords;
929 $value =~ /^(\d+)$/ or die "unparsable $pkey";
930 $object = qsearchs({ %qsearch, 'hashref' => { $pkey => $1 } })
931 or die "$pkey $1 not found in $table";
933 warn "$table $pkey => $1"
936 &{$opt{'edit_callback'}}( $cgi, $object, $fields, \%opt )
937 if $opt{'edit_callback'};
943 my $hashref = $opt{'new_hashref_callback'}
944 ? &{$opt{'new_hashref_callback'}}
947 $object = $opt{'new_object_callback'}
948 ? &{$opt{'new_object_callback'}}( $cgi, $hashref, $fields, \%opt )
949 : $class->new( $hashref );
951 &{$opt{'new_callback'}}( $cgi, $object, $fields, \%opt )
952 if $opt{'new_callback'};
956 &{$opt{'end_callback'}}( $cgi, $object, $fields, \%opt )
957 if $opt{'end_callback'};
959 $opt{action} ||= $object->$pkey() ? 'Edit' : 'Add';