You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Skip Dever (JIRA)" <ji...@apache.org> on 2007/12/11 06:12:43 UTC

[jira] Commented: (OFBIZ-1421) Accounts Receivable module

    [ https://issues.apache.org/jira/browse/OFBIZ-1421?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12550309 ] 

Skip Dever commented on OFBIZ-1421:
-----------------------------------

Forgot something.  You will need the following css to have the over30, over60,over90 entries show up in different colors:

.redUnderLine {
  color: red;
  text-decoration: underline;
}


A.redUnderLine {
  color: red;
  text-decoration: underline;
}

A.redUnderLine:hover {
  color: white;
  background-color: red;
  text-decoration: none;
}


A.orangeUnderLine {
  color: #ff8000;
  text-decoration: underline;
}

A.orangeUnderLine:hover {
  color: white;
  background-color: #ff8040;
  text-decoration: none;
}



A.yellowUnderLine {
  color: #ffff00;
  text-decoration: underline;
}

A.yellowUnderLine:hover {
  color: black;
  background-color: #ffff00;
  text-decoration: none;
}


A.purpleUnderLine {
  color: #ff00ff;
  text-decoration: underline;
}

A.purpleUnderLine:hover {
  color: white;
  background-color: #ff00ff;
  text-decoration: none;
}


A.blueUnderLine {
  color: #0000ff;
  text-decoration: underline;
}

A.blueUnderLine:hover {
  color: white;
  background-color: #0000ff;
  text-decoration: none;
}


.redOdd {
    background-color: #FFDDDD;
}

.redEven {
    background-color: #FFBFBF;
}


.orangeOdd {
    background-color: #FFDCBF;
}

.orangeEven {
    background-color: #FFCA95;
}


.yellowOdd {
    background-color: #FFFFCC;
}

.yellowEven {
    background-color: #FFFF95;
}


.purpleOdd {
    background-color: #FFCEFF;
}

.purpleEven {
    background-color: #FFB06F;
}



> Accounts Receivable module
> --------------------------
>
>                 Key: OFBIZ-1421
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1421
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: accounting
>            Reporter: Skip Dever
>            Priority: Minor
>         Attachments: ar.zip, ar.ZIP, arofbiz.ZIP
>
>
> Enclosed is a zip file that is intended to be unzipped in the hot-deploy directory.  Once unzipped, you will find a readme file in the ar directory with directions for the few things you need to do to get it running on Opentaps.  It will also run on Ofbiz, but you'll have to do the minimal UI work using the samples provided.  Basically, the only thing needed for Ofbiz is a way to list billing account transactions in a clear way and print billing account statements.  Some other things that exist in Opentaps would be nice.
> This whole module is based on the concept that all billing account payments are ONLY applied to an invoice.  They cannot be applied to the billing account itself or in the Opentaps case, to some arbitrary GL account.  If a payment is not fully applied, it cannot be marked closed (that is already the case in Ofbiz and I made it that way in Opentaps).  If you use the Ofbiz screens, you must use the Obbiz screen here:
> https://localhost:8443/accounting/control/editPaymentApplications?paymentId=xxx
> Where you can apply the payment to an invoice.
> I encourage everyone interested to have a look at the monolithic org.ofbiz.accounting.ar.BillingAccountHelper.  As I mentioned, this needs refactored, but I am hoping that someone can poke some holes in the logic.
> There are services in here that override some Ofbiz ones, most notably "processCreditReturn", and the opentaps one "receiveBillingAccountPayment".
> There is LOTS of Ofbiz GUI work to do to complete this and some little for Opentaps.  Most notably, a way to mass print customer statements for those without email (or maybe all?), but except for the formentioned collections agent application, this is ready to beta test for Opentaps users.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.