AR Invoice: Difference between revisions

m
no edit summary
No edit summary
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1:
==Technical Specification==
===Rules in ARInvoice===
# AccNo (Sales A/C) cannot be empty or null.
# AccNo (Sales A/C) cannot be Debtor or Creditor Account No.
# NetTotal cannot be in negative value.
# '''NetTotal''' is the sum of amount & GST from details, this field is '''ReadOnly'''.
Line 8:
 
<br />
===References of AutoCount Accounting version 1.8=, 1.9==
{{BaseReferenceAC18}}
'''BCE.AutoCount.ARAP.dll'''
 
<br /><br />
==Sample with data model==
===Create new AR Invoice===
<syntaxhighlight lang="csharp">
Line 31 ⟶ 32:
doc.SalesAgent = source.SalesPerson;
doc.JournalType = source.JournalType;
 
//Set whether to apply rounding method of either by Document or by Each Line,
//this may affect different result in GST Calculation due to decimal point rounding.
doc.RoundingMethod = source.RoundMethod;
 
//Document Level Inclusive Tax
doc.InclusiveTax = source.Inclusive;
Line 118 ⟶ 121:
</syntaxhighlight>
 
{{SeeAlsoAPIAccount}}
{{SeeAlsoAccount}}
 
[[Category:Programmer]]
[[Category:API]]