diff options
author | ivan <ivan> | 2009-10-05 02:16:46 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-10-05 02:16:46 +0000 |
commit | 0c2679eee18b3b073bc91657fcf85c5dd2e5efc0 (patch) | |
tree | b782f6f3ddbf36c549a88a77f2cda7359f1c456c /FS | |
parent | 4c951501b14bf459fa039db9ef093cfea9e37db3 (diff) |
add manual_process-display config to subtract fee from amount instead of adding, RT#5889
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Conf.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 1353df898..b125b6253 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -1863,6 +1863,18 @@ worry that config_items is freeside-specific and icky. }, { + 'key' => 'manual_process-display', + 'section' => 'billing', + 'description' => 'When using manual_process-pkgpart, add the fee to the amount entered (default), or subtract the fee from the amount entered.', + 'type' => 'select', + 'select_hash' => [ + 'add' => 'Add fee to amount entered', + 'subtract' => 'Subtract fee from amount entered', + ], + }, + + + { 'key' => 'allow_negative_charges', 'section' => 'billing', 'description' => 'Allow negative charges. Normally not used unless importing data from a legacy system that requires this.', |