diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-07-26 14:05:08 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-26 14:05:08 -0700 |
| commit | 8c450aab9bae89373c2c1b35c85597bb52299de3 (patch) | |
| tree | 62e7400162703ad0990f80a2d71b90fc1167e759 /httemplate/elements/customer-table.html | |
| parent | 2528cc7b182781a82844d8bbb1b555560487abc7 (diff) | |
| parent | bd647f16de5352722baed016b45baa4e7c695278 (diff) | |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/elements/customer-table.html')
| -rw-r--r-- | httemplate/elements/customer-table.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/httemplate/elements/customer-table.html b/httemplate/elements/customer-table.html index 79443dc8b..75e682d92 100644 --- a/httemplate/elements/customer-table.html +++ b/httemplate/elements/customer-table.html @@ -203,7 +203,11 @@ Example: var customerArrayArray = eval('(' + customers + ')') || []; - if ( customerArrayArray.length == 1 ) { + if ( customerArrayArray.length == 0 ) { + + update_customer(searchrow, []); + + } else if ( customerArrayArray.length == 1 ) { update_customer(searchrow, customerArrayArray[0]); % if ( $opt{custnum_update_callback} ) { @@ -277,7 +281,11 @@ Example: custnum_obj.disabled = false; custnum_obj.style.backgroundColor = '#ffffff'; - if ( customerArrayArray.length == 1 ) { + if ( customerArrayArray.length == 0 ) { + + update_customer(searchrow, []); + + } else if ( customerArrayArray.length == 1 ) { update_customer(searchrow, customerArrayArray[0]); % if ( $opt{custnum_update_callback} ) { |
