Show Billing Account Info on the Party Profile
---------------------------------------------- Key: OFBIZ-2445 URL: https://issues.apache.org/jira/browse/OFBIZ-2445 Project: OFBiz Issue Type: Improvement Components: party Affects Versions: SVN trunk Reporter: Pranay Pandey Fix For: SVN trunk Show Billing Account Info and returns as well to show outstanding returns on the Party Profile There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: ShowBillingAccountOnPartymgr.patch Patch for showing Billing Account and return information on partymgr. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707686#action_12707686 ] Vivek Mishra commented on OFBIZ-2445: ------------------------------------- Hello Pranay, I am uploading the patch for showing billing account and return information in party component. Steps for testing :- 1. Create a sales order, it should be in approved status 2. Create a return. 3. Go to party component and select a party for which the order has been created. 4. Click Financial history tab. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: ShowBillingAccountOnPartymgr.patch Uploading the patch with following changes as compare to older one. Now if we go financial history tab and the customer selected has no billing account then it will show blank form. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: OFBIZ-2445.patch Hello Pranay, I have created a new groovy file BillingAccounts.groovy instead of doing changes in BillSettings.groovy. Thanks. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708414#action_12708414 ] Pranay Pandey commented on OFBIZ-2445: -------------------------------------- Thanks Vivek, Here are few comments for your patch: 1) {code} import org.ofbiz.accounting.payment.*; {code} Can be improved in BillingAccounts.groovy 2) {code} <property key="PartyBillingAccountInformation"> <value xml:lang="en">Party Billing Account Information</value> </property> {code} Should be {code} <property key="PartyBillingAccountInformation"> <value xml:lang="en">Billing Account Information</value> </property> {code} 3) {code} <property key="ReturnHeaderInformation"> <value xml:lang="en">Retrun Header Information</value> </property> {code} should be: {code} <property key="PartyReturnHeaderInformation"> <value xml:lang="en">Retrun Header Information</value> </property> {code} > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708415#action_12708415 ] Pranay Pandey commented on OFBIZ-2445: -------------------------------------- Also Vivek from next time please keep the name of the patch same as you updated last time. It helps in identifying the updated patch easily. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: OFBIZ-2445.patch Thanks for the comments Pranay. Here is the upgraded patch according to your comments. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708455#action_12708455 ] Pranay Pandey commented on OFBIZ-2445: -------------------------------------- Sorry Vivek, after a testing and thorough review I found few more things which should be improved in this patch before it goes in trunk: 1) In BillingAccounts.groovy follwing code: {code} if (partyId) { billingAccountAndRoles = delegator.findByAnd("BillingAccountAndRole", [partyId : partyId]); if (billingAccountAndRoles) currencyUomId = billingAccountAndRoles.accountCurrencyUomId.get(0); if (currencyUomId) billingAccounts = BillingAccountWorker.makePartyBillingAccountList(userLogin, currencyUomId, partyId, delegator, dispatcher); if (billingAccounts) context.billingAccounts = billingAccounts; } {code} should be improved to: {code} billingAccounts = []; if (partyId) { currencyUomId = EntityUtil.getFirst((delegator.findByAnd("BillingAccountAndRole", [partyId : partyId])).accountCurrencyUomId; if (currencyUomId) billingAccounts = BillingAccountWorker.makePartyBillingAccountList(userLogin, currencyUomId, partyId, delegator, dispatcher); } context.billingAccounts = billingAccounts; {code} 2) In ReturnHeader.groovy {code} returnHeaderTypeId = null; fromPartyId = null; statusId = null; {code} Above initializations can be removed as not used anywhere in your code and you added them {code} partyId = parameters.get("partyId"); can be partyId = parameters.partyId; returnRecords = []; should be returns = []; returns = [:] should be return = [:]; {code} {code} condition = EntityCondition.makeCondition("fromPartyId", EntityOperator.EQUALS, partyId); returnHeaders = delegator.findList("ReturnHeader", condition, null, null, null, false); {code} can be improved to: {code} returnHeaders = delegator.findList("ReturnHeader", EntityCondition.makeCondition("fromPartyId", EntityOperator.EQUALS, partyId), null, null, null, false); {code} This is all from my side. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pranay Pandey updated OFBIZ-2445: --------------------------------- Component/s: accounting > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708467#action_12708467 ] Pranay Pandey commented on OFBIZ-2445: -------------------------------------- Also Vivek from next time please keep the name of the patch same as you updated last time. It helps in identifying the updated patch easily. > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708799#action_12708799 ] Ashish Vijaywargiya commented on OFBIZ-2445: -------------------------------------------- One more thing: Please don't use the patch name like "OFBIZ-2445.patch". Some descriptive name helps to pick the patch if I have more patch on my desktop. For ex: ShowBillingAccountOnPartymgr.patch -- This is wonderful name IMO ;o) -- Ashish > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vikas Mayur reassigned OFBIZ-2445: ---------------------------------- Assignee: Vikas Mayur > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708858#action_12708858 ] Vikas Mayur commented on OFBIZ-2445: ------------------------------------ It depends, both names seems to me okay but they can have their pros and cons. With the first one, at least it point to me Jira issue where I can read the information easily. But yes it is author choice :) > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708867#action_12708867 ] Jacques Le Roux commented on OFBIZ-2445: ---------------------------------------- Like Ashish I prefer a more descriptive name, but yes, very subjective :) > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12708869#action_12708869 ] Ashish Vijaywargiya commented on OFBIZ-2445: -------------------------------------------- Initially I was thinking to put "Personal Choice" but somehow I missed to write that. I think we can do one thing(I will try to do this myself if I uploads the patch in future) We can add content details of the work that has been done and suffix the ofbiz jira issue number to handle both the situation. For example: ShowBillingAccountOnPartymgr_OFBIZ-2445.patch -- Ashish Vijaywargiya > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > Attachments: OFBIZ-2445.patch, OFBIZ-2445.patch, ShowBillingAccountOnPartymgr.patch, ShowBillingAccountOnPartymgr.patch > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: (was: ShowBillingAccountOnPartymgr.patch) > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: (was: ShowBillingAccountOnPartymgr.patch) > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: (was: OFBIZ-2445.patch) > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vivek Mishra updated OFBIZ-2445: -------------------------------- Attachment: (was: OFBIZ-2445.patch) > Show Billing Account Info on the Party Profile > ---------------------------------------------- > > Key: OFBIZ-2445 > URL: https://issues.apache.org/jira/browse/OFBIZ-2445 > Project: OFBiz > Issue Type: Improvement > Components: accounting, party > Affects Versions: SVN trunk > Reporter: Pranay Pandey > Assignee: Vikas Mayur > Fix For: SVN trunk > > > Show Billing Account Info and returns as well to show outstanding returns on the Party Profile > There is a Financial History ("Fin. History") tab on the profile in the Party Manager but it only contains information about invoice and payments. Add information about Billing Account(s) and available credit on this page. Add section about returns as well to show outstanding returns with status. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
Free forum by Nabble | Edit this page |