ispCP - Board - Support
[DEV] OmegaBill - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Contributions Area (/forum-40.html)
+--- Forum: Enhancements (/forum-43.html)
+--- Thread: [DEV] OmegaBill (/thread-6793.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24


RE: [DEV] Billing and automated invoice system - c0urier - 01-10-2010 03:31 AM

I'd gladly help out with the danish translation - Let me know where to start.


RE: [DEV] Billing and automated invoice system - oddyutza - 01-11-2010 04:53 AM

sorry for the delay!

there are some bugs when recurring invoice occur, i'll solve them ASAP!
i'll have to delay the release for a small period of time, release will be tomorrow 11.01.2010 - romania time Smile

PS : don't hate me Big Grin


RE: [DEV] Billing and automated invoice system - surfweb82 - 01-11-2010 05:49 AM

Hello.

if possible I would like to help with the translation into Italian.

Waiting for reply ...


RE: [DEV] Billing and automated invoice system - oddyutza - 01-11-2010 05:17 PM

UPDATE
languages at the moment :
Peter - German
Skopy - Croatian
Tango - Turkish
Stelz - Russian
Surfweb82 - Italian
Gbj - Danish

already have
English
Romanian


Later edit :

As promised
Download : http://www.omegabill.org/releases/OmegaBill_v1.0_Build4.zip

there are some new changes
1. auto recurring invoice through the cron script ($due_date = $date+14 days) - 14 days grace period for recurring invoice
2. penalties added like this
$discountedsubtotal = ($subtotal - $discount)
$tax = $discountedsubtotal * (tax / 100)
$amountdue = ($tax + $discountedsubtotal)
$penalties = $amountdue / 100
and to the final invoice is
$amountdue = ($tax + $discountedsubtotal) + $invoicedata['penalties'];
conclusion :
that means we calculate the penalties to the all due (sum + TAX) and at the end we calculate sum + tax + penalties, because penalties don't support tax
in our present case penalties are 1% / day overdue

language files are in "languages" folder
and of cource lot's and lot's of features! Smile

few bugs i've just saw
. languages are hardcoded into sistem - next release will be addable through interface (after we will have some languages Smile )
. invoice template for html & pdf - not complete

the rest should be ok

just hollow if something goes wrong!

OH .. ps : read the file in #INSTRUCTIONS folder


PS : don't remove the copyrights, that would be very awful from you!

later edit 2

oh crap i've forgot

username : admin
password : omegabill
my bad!

later edit 3

logging part hasn't been implemented yet!


RE: [DEV] Billing and automated invoice system - skopy - 01-12-2010 01:54 AM

i cant get cron to work, if i access it via http blank screen comes, chmodded 755 , tried with vuxxx and root user; and with webmin via php -q i get no output

anyone an idea?


RE: [DEV] Billing and automated invoice system - oddyutza - 01-12-2010 01:59 AM

cron file is silent
php -f cron_billing.php

but change the credentials, that means :
#Billing config
and
#ispCP config

in the cron_billing.php provided you have my test credentials

check the omegabill for the updates!


RE: [DEV] Billing and automated invoice system - skopy - 01-12-2010 02:32 AM

credentials where ok, i tryed -f , doesent work either...


RE: [DEV] Billing and automated invoice system - oddyutza - 01-12-2010 03:50 AM

what is not working? ...give me more details please


RE: [DEV] Billing and automated invoice system - oddyutza - 01-12-2010 05:58 PM

hello,

in cron_billing.php
around line 90 you should have
echo $duedate;
die();

remove both lines - i was in a rush yesterday, and i've forgot some stuffs, also i've made the necessary changes in the archive, you can re-download!

br++


RE: [DEV] Billing and automated invoice system - skopy - 01-12-2010 06:02 PM

works..

big thanks =)