diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-04-21 12:06:03 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-04-21 12:06:03 -0700 |
commit | 69142462165700cccd2e3e7390530cbfae54fd03 (patch) | |
tree | fe74256e4f0070d462c656e5ac3da1a8bb5a9406 /FS | |
parent | 4cd203a4114fc5fd45960019b617a42b534c589e (diff) |
fix leakage of v4 omission of cust_main.payby onto v3, RT#34084, RT#23741
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/ClientAPI/Signup.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/ClientAPI/Signup.pm b/FS/FS/ClientAPI/Signup.pm index 7705b90ac..cb9c30d73 100644 --- a/FS/FS/ClientAPI/Signup.pm +++ b/FS/FS/ClientAPI/Signup.pm @@ -942,6 +942,7 @@ sub new_customer_minimal { 'refnum' => $packet->{refnum} || $conf->config('signup_server-default_refnum'), 'tagnum' => [ FS::part_tag->default_tags ], + 'payby' => 'BILL', map { $_ => $packet->{$_} } qw( salesnum |