diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-28 18:03:17 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-28 18:05:56 -0500 |
commit | 18478e91f04d3e7bc2e846a20ade57f41ba80011 (patch) | |
tree | fce2de028f97fda380a7eb1a1d3404aae1aa17eb | |
parent | 8352207982f14a7ff3b0da376ca8031fb4ad1757 (diff) |
RT#40056 Export DIDs to portaone switch [activation_date format fix]
-rw-r--r-- | FS/FS/part_export/portaone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/portaone.pm b/FS/FS/part_export/portaone.pm index 2625c5741..2654e1c2f 100644 --- a/FS/FS/part_export/portaone.pm +++ b/FS/FS/part_export/portaone.pm @@ -139,7 +139,7 @@ sub _export_insert { 'i_customer' => $i_customer, 'iso_4217' => ($conf->config('currency') || 'USD'), 'i_product' => $product_id, - 'activation_date' => time2str("%Y-%m-%d %H:%M:%S",time), + 'activation_date' => time2str("%Y-%m-%d",time), 'billing_model' => 1, # '1' for credit, '-1' for debit, could make this an export option } },'i_account'); |