Booking of PurchaseReturn

Accounting and inventory IFRS/GAAP suite for SMB. General questions. See 1C:AccountingSuite details

#1
People who like this:0Yes/0No
Interested
Rating: 11
Joined: Nov 10, 2011
Company: 1A Software e.U

Hi all together,

I guess it would be better if some changes in booking of PurchaseReturn were changed.
When we book PurchaseReturn, we see the amount of PurchaseReturn in separate row with minus.
In my opinion, it would be better, if it was changed similarly to InvoicePaymnet. Am not sure about the syntax:

Record.ExtDimensions[ChartsOfCharacteristicTypes.Dimensions.Company] = Company;
Record.ExtDimensions[ChartsOfCharacteristicTypes.Dimensions.Document] = DocumentObject.Ref;

In this case, we would see in the A/P Aging the reduced amount. Otherwise, also if we inpute an InvoicePayment, the "debt" amount is not reduced by DocumentTotal of  RurchaseReturn.

I think it has sence to change it.

 
#2
People who like this:0Yes/0No
Interested
Rating: 11
Joined: Nov 10, 2011
Company: 1A Software e.U

Well, here we would need


DocumentObject = DocumentLine.Document.GetObject();
but instead of "DocumentLine" "ParentDocument".

 
#3
People who like this:0Yes/0No
Interested
Rating: 11
Joined: Nov 10, 2011
Company: 1A Software e.U

So I've just chaged it so:

//new line
DocumentObject = ParentDocument.GetObject();
// the same-----
Record = RegisterRecords.GeneralJournal.AddDebit();
Record.Account = APAccount;
Record.Period = Date;
Record.Amount = DocumentTotal;
Record.Currency = Currency;
Record.AmountRC = DocumentTotal * ExchangeRate;
Record.ExtDimensions[ChartsOfCharacteristicTypes.Dimensions.Company] = Company;
----- end of the same
//Record.ExtDimensions[ChartsOfCharacteristicTypes.Dimensions.Document] = Ref;
Record.ExtDimensions[ChartsOfCharacteristicTypes.Dimensions.Document] = DocumentObject.Ref;

I'll let it so according to my changes cause i think that's also logically correct.

 
#4
People who like this:0Yes/0No
Active user
Rating: 4
Joined: Jul 29, 2011
Company: 1C Company

We need additional time for analysis of this request. We should be able to give an answer by the end of the week.

 
#5
People who like this:0Yes/0No
Active user
Rating: 4
Joined: Jul 29, 2011
Company: 1C Company

A Purchase Return (refund) is a document that records vendor's liability to you. It doesn't change your liability to the vendor to pay the original Invoice. The vendor will be expected to pay you the amount of the refund.

If you want to rather reduce your liability to the vendor use the Credit memo document.

 
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)
Be the first to know tips & tricks on business application development!

A confirmation e-mail has been sent to the e-mail address you provided .

Click the link in the e-mail to confirm and activate the subscription.