diff options
author | Mark Wells <mark@freeside.biz> | 2015-04-26 13:52:36 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-04-26 13:52:36 -0700 |
commit | 89b934cfce5226556eb5f2ebb8377fb87d278a63 (patch) | |
tree | f3ceda097080a33d8c0881fafb87579701dc199d /fs_selfservice/FS-SelfService | |
parent | 23d1a5787502e9e76338f6a7878b131f04741575 (diff) |
selfservice quotations, #33852
Diffstat (limited to 'fs_selfservice/FS-SelfService')
-rw-r--r-- | fs_selfservice/FS-SelfService/SelfService.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs_selfservice/FS-SelfService/SelfService.pm b/fs_selfservice/FS-SelfService/SelfService.pm index 36d7fb6a4..c20808e21 100644 --- a/fs_selfservice/FS-SelfService/SelfService.pm +++ b/fs_selfservice/FS-SelfService/SelfService.pm @@ -114,6 +114,13 @@ $socket .= '.'.$tag if defined $tag && length($tag); 'start_thirdparty' => 'MyAccount/start_thirdparty', 'finish_thirdparty' => 'MyAccount/finish_thirdparty', + + 'quotation_info' => 'MyAccount/quotation/quotation_info', + 'quotation_print' => 'MyAccount/quotation/quotation_print', + 'quotation_add_pkg' => 'MyAccount/quotation/quotation_add_pkg', + 'quotation_remove_pkg' => 'MyAccount/quotation/quotation_remove_pkg', + 'quotation_order' => 'MyAccount/quotation/quotation_order', + ); @EXPORT_OK = ( keys(%autoload), |