Talk:Sponsored Development: Cash Payments

From ADempiere
Revision as of 00:35, 7 May 2008 by Trifonnt (Talk)

Jump to: navigation, search
This Wiki is read-only for reference purposes to avoid broken links.

Hi,

Can you explain more about this project ? What's going happen to cash functionality

--Omidp 11:09, 25 March 2008 (EDT)

Cash functionality is not touched. Just added new functionality which allows cash transaction to act like regual payment. trifon 03:23, 7 May 2008 (EDT)


Hi Trifon!

In fist look is nice, but I have some doubts about the account fact if you generate a payment from Payment window

what is the effect account? The payment via it functionality how are conciliation?

I saw that when you choose a Cash book the account bank do not is show.

Kind regards Victor Perez www.e-evolution.com


Hi Victor, Yes when Cash Book is selected Bank account is hidden. I'm not sure that i understand your question. Modifications are very small if you can install and test them would be very nice. Kind regards, Trifon trifon 03:25, 7 May 2008 (EDT)


Hi Victor, if i understand correctl you ask if Payment and Cahs Journal will generate duplicated accounting transactions. Answer is No. Please check Doc_Payment method createFacts:

	public ArrayList<Fact> createFacts (MAcctSchema as)
	{
		//  create Fact Header
		Fact fact = new Fact(this, as, Fact.POST_Actual);
		//	Cash Transfer
		if ("X".equals(m_TenderType))
		{
			ArrayList<Fact> facts = new ArrayList<Fact>();
			facts.add(fact);
			return facts;
		}