diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-06-20 09:04:14 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-06-22 16:29:49 -0400 |
commit | 6016bc83d369186275044bd8539f66a3cb03c4cb (patch) | |
tree | 5ca8dfce37fe72b3701950605c0b894cc7f1d850 /httemplate/edit | |
parent | cebbf273c639066cb3fd4997b58efe1fdb7322e4 (diff) |
RT# 75817 - Added the ability to set contacts password on the backend
Conflicts:
httemplate/elements/validate_password.html
httemplate/misc/xmlhttp-validate_password.html
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/cust_main-contacts.html | 1 | ||||
-rw-r--r-- | httemplate/edit/elements/edit.html | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/httemplate/edit/cust_main-contacts.html b/httemplate/edit/cust_main-contacts.html index 381cdc2ea..7dedfe04d 100644 --- a/httemplate/edit/cust_main-contacts.html +++ b/httemplate/edit/cust_main-contacts.html @@ -10,6 +10,7 @@ { 'field' => 'contactnum', 'type' => 'contact', 'colspan' => 6, + 'custnum' => $custnum, 'm2m_method' => 'cust_contact', 'm2m_dstcol' => 'contactnum', 'm2_label' => ' ', #'Contact', diff --git a/httemplate/edit/elements/edit.html b/httemplate/edit/elements/edit.html index f6bc1abb5..099b0a57e 100644 --- a/httemplate/edit/elements/edit.html +++ b/httemplate/edit/elements/edit.html @@ -329,6 +329,10 @@ Example: % #any? % 'colspan' => $f->{'colspan'}, % 'required' => $f->{'required'}, +% +% #contact +% 'custnum' => $f->{'custnum'}, +% 'prospectnum' => $f->{'prospectnum'}, % ); % % $include_common{$_} = $f->{$_} foreach grep exists($f->{$_}), |