(32 intermediate revisions by the same user not shown) | |||
Line 41: | Line 41: | ||
===Example 2 - Cloud/Mobile System=== | ===Example 2 - Cloud/Mobile System=== | ||
[[File:LinkFlow-Example02.jpg|600px|center]] | [[File:LinkFlow-Example02.jpg|600px|center]] | ||
===Example 3 - Cloud/Mobile System with SQL Connect Public=== | |||
[[File:LinkFlow-Example03.jpg|600px|center]] | |||
{| style="margin: 1em auto 1em auto;" | |||
|- | |||
| | |||
---------------------------------------------------------------------------------------------------------------------------------------------------- | |||
{| | |||
|- | |||
| [[File:Template.Warning-01.jpg|80px]]|| | |||
: Using this method the respond might very slow. | |||
: It depending on user internet speed & stabilities. | |||
|} | |||
---------------------------------------------------------------------------------------------------------------------------------------------------- | |||
|} | |||
:* The SDK can be build in in your system or a Standalone windows Application(Middle Application). | :* The SDK can be build in in your system or a Standalone windows Application(Middle Application). | ||
Line 91: | Line 106: | ||
* [[#JScript/JavaScript| JavaScript]] | * [[#JScript/JavaScript| JavaScript]] | ||
* [[#Delphi| Delphi]] | * [[#Delphi| Delphi]] | ||
[https://docs.google.com/spreadsheets/d/1dGUXIM0aWAG7xIyE1D1IsPmdq7paF9gpq3h0NqzFQDc/edit?usp=sharing Summary Document Flow by Programming Language] | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
Line 1,609: | Line 1,626: | ||
====Stock Adjustment==== | ====Stock Adjustment==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! ST_AJ | ||
|- | |- | ||
| | | | ||
Line 2,680: | Line 2,697: | ||
ComServer.Logout() | ComServer.Logout() | ||
finally: | finally: | ||
ComServer = None | |||
Common.KillApp() | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Customer Due Listing==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Customer Due Listing | |||
|- | |||
| | |||
<syntaxhighlight lang="Python"> | |||
#Updated 08 Oct 2024 | |||
import Common | |||
import datetime | |||
def GetData(): | |||
RptObject = ComServer.RptObjects.Find('Customer.DueDocument.RO') | |||
#RptObject.Params.Find("AgentData").Value = 'Not use if AllAgent is true | |||
RptObject.Params.Find("AllAgent").Value = True | |||
RptObject.Params.Find("AllArea").Value = True | |||
RptObject.Params.Find("AllCompany").Value = False | |||
RptObject.Params.Find("AllCompanyCategory").Value = True | |||
RptObject.Params.Find("AllCurrency").Value = True | |||
RptObject.Params.Find("AllDocProject").Value = True | |||
RptObject.Params.Find("AllItemProject").Value = True | |||
#RptObject.Params.Find("AreaData").Value = 'Not use if AllArea is true | |||
#RptObject.Params.Find("CompanyCategoryData").Value = 'Not use if AllCompanyCategory is true | |||
RptObject.Params.Find("CompanyData").Value = "300-C0001" | |||
#RptObject.Params.Find("CurrencyData").Value = 'Not use if AllCurrency is true | |||
#RptObject.Params.Find("DocProjectData").Value = 'Not use if AllDocProject is true | |||
#RptObject.Params.Find("GroupBy").Value = # | |||
#RptObject.Params.Find("ItemProjectData").Value = # | |||
RptObject.Params.Find("PrintContra").Value = True | |||
RptObject.Params.Find("PrintCreditNote").Value = True | |||
RptObject.Params.Find("PrintDebitNote").Value = True | |||
RptObject.Params.Find("PrintInvoice").Value = True | |||
RptObject.Params.Find("PrintOverDue").Value = True | |||
RptObject.Params.Find("PrintUnDue").Value = False | |||
RptObject.Params.Find("ShowForeignCurrency").Value = True | |||
RptObject.Params.Find("ShowLocalCurrency").Value = True | |||
RptObject.Params.Find("SortBy").Value = "DocDate;DueDate;DocNo" | |||
lDateTo = datetime.datetime(2024, 9, 30, 13, 0) | |||
lDateTo.strftime('%m/%d/%Y') | |||
RptObject.Params.Find("DateTo").Value = lDateTo | |||
RptObject.Params.Find("IncludePDCheque").Value = True | |||
RptObject.CalculateReport() | |||
lDataSet = RptObject.DataSets.Find("cdsMain") | |||
print("Record count : ", lDataSet.RecordCount) | |||
if lDataSet.RecordCount > 0: | |||
while not lDataSet.eof: | |||
print(lDataSet.FindField('CODE').AsString) | |||
print(lDataSet.FindField('DOCTYPE').AsString) | |||
print(lDataSet.FindField('DOCDATE').AsString) | |||
print(lDataSet.FindField('DOCNO').AsString) | |||
print(lDataSet.FindField('DUEDATE').AsString) | |||
print(lDataSet.FindField('DOCAMT').AsString) | |||
print(lDataSet.FindField('OUTSTANDING').AsString) | |||
print(lDataSet.FindField('AGE').AsString) | |||
print("===") | |||
lDataSet.Next() | |||
else: | |||
print ("Record Not Found") | |||
try: | |||
Common.CheckLogin() | |||
global ComServer | |||
ComServer = Common.ComServer | |||
GetData() | |||
ComServer.Logout() | |||
finally: | |||
ComServer = None | ComServer = None | ||
Common.KillApp() | Common.KillApp() | ||
Line 2,738: | Line 2,831: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 22 Oct 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 2,776: | Line 2,869: | ||
echo "Record Not Found"; | echo "Record Not Found"; | ||
} | } | ||
$lDataSet = null; | |||
} | } | ||
Line 2,986: | Line 3,080: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 14 Mar 2025<br>"; | ||
#This will doing following posting | #This will doing following posting | ||
#01. Cash Sales | #01. Cash Sales | ||
#02. Sales Credit Note | #02. Sales Credit Note | ||
#03. Customer Payment With Knock off | #03. Customer Payment With Knock off | ||
#04. Edit Credit Note Posted in Step 02 & Knock Off | #04. Edit Credit Note Posted in Step 02 & Knock Off | ||
#05. Customer Refund to Knock off Credit Note | #05. Customer Refund to Knock off Credit Note | ||
$ComServer = null; | $ComServer = null; | ||
Line 2,999: | Line 3,093: | ||
{ | { | ||
global $ComServer; | global $ComServer; | ||
$ComServer = new COM("SQLAcc.BizApp") or die("Could not initialise SQLAcc.BizApp object."); | $ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | ||
$status = $ComServer->IsLogin(); | $status = $ComServer->IsLogin(); | ||
if ($status == true) | if ($status == true) | ||
{ | { | ||
# $ComServer->Logout(); | |||
} | } else | ||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | $ComServer->Login("ADMIN", "ADMIN", #UserName, Password | ||
"C: | "D:\Happy\DB\Default.DCF", #"C:\eStream\SQLAccounting\Share\Default.DCF", #DCF file | ||
"ACC-0082.FDB"); #Database Name | "ACC-0082.FDB"); #Database Name | ||
Line 3,018: | Line 3,112: | ||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | $lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | ||
$lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | $lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | ||
$lSN = $BizObject->DataSets->Find("cdsSerialNumber"); #lSN contains Serial Number data | |||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--CS Test--"; | $lMain->FindField("DocNo")->AsString = "--CS Test--"; | ||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime(" | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime(" | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
Line 3,048: | Line 3,143: | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 435; | $lDetail->FindField("UnitPrice")->AsFloat = 435; | ||
$lDetail->FindField("Amount")->AsFloat = 410.37; #Exclding GST Amt | $lDetail->FindField("Amount")->AsFloat = 410.37; #Exclding GST Amt | ||
Line 3,054: | Line 3,149: | ||
$lDetail->DisableControls(); | $lDetail->DisableControls(); | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = True; | ||
$lDetail->EnableControls(); | $lDetail->EnableControls(); | ||
$lDetail->Post(); | $lDetail->Post(); | ||
Line 3,066: | Line 3,161: | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 94.43; | $lDetail->FindField("UnitPrice")->AsFloat = 94.43; | ||
$lDetail->FindField("Amount")->AsFloat = 94.43; | $lDetail->FindField("Amount")->AsFloat = 94.43; | ||
Line 3,078: | Line 3,173: | ||
$lDetail->FindField("Description")->AsString = "Sales Item B"; | $lDetail->FindField("Description")->AsString = "Sales Item B"; | ||
#$lDetail->FindField("Account")->AsString = "500-000"; #If you wanted override the Sales Account Code | #$lDetail->FindField("Account")->AsString = "500-000"; #If you wanted override the Sales Account Code | ||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("UOM")->AsString = "UNIT"; | $lDetail->FindField("UOM")->AsString = "UNIT"; | ||
#$lDetail->FindField("DISC")->AsString = "5%+3"; #Optional(eg 5% plus 3 Discount) | #$lDetail->FindField("DISC")->AsString = "5%+3"; #Optional(eg 5% plus 3 Discount) | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 100; | $lDetail->FindField("UnitPrice")->AsFloat = 100; | ||
$lDetail->FindField("Amount")->AsFloat = 200; | $lDetail->FindField("Amount")->AsFloat = 200; | ||
Line 3,089: | Line 3,184: | ||
$lDetail->Post(); | $lDetail->Post(); | ||
$ | #For Item Code with Serial Number | ||
$ | $lDetail->Append; | ||
$lDetail->FindField("SEQ")->Value = 4; | |||
$lDetail->FindField("ItemCode")->AsString = "SN1"; | |||
$lDetail->FindField("DESCRIPTION")->AsString = "Sales Serial Number Item"; | |||
$lSN->Append(); | |||
$lSN->FindField("SERIALNUMBER")->AsString = "SN520606|23.74"; | |||
$lSN->Post(); | |||
$lSN->Append(); | |||
$lSN->FindField("SERIALNUMBER")->AsString = "SN520607|22.84"; | |||
$lSN->Post(); | |||
function PostDataPM(){ | $lDetail->FindField("UOM")->AsString = "UNIT"; | ||
$lDetail->FindField("QTY")->AsFloat = 2; | |||
$lDetail->FindField("TAX")->AsString = "SV"; | |||
$lDetail->FindField("TaxRate")->AsString = "6%"; | |||
$lDetail->FindField("TAXINCLUSIVE")->AsBoolean = False; | |||
$lDetail->FindField("UNITPRICE")->AsFloat = 94.43; | |||
$lDetail->FindField("TAXAMT")->AsFloat = 11.33; | |||
$lDetail->Post(); | |||
$BizObject->Save(); | |||
$BizObject->Close(); | |||
} | |||
function PostDataPM(){ | |||
global $ComServer; | global $ComServer; | ||
Line 3,103: | Line 3,221: | ||
$lMain->FindField("DocNo")->AsString = "--PM Test--"; | $lMain->FindField("DocNo")->AsString = "--PM Test--"; | ||
$lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("DocDate")->Value = date("d-m-Y", strtotime(" | $lMain->FindField("DocDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->Value = date("d-m-Y", strtotime(" | $lMain->FindField("PostDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | $lMain->FindField("Description")->AsString = "Payment for A/c"; | ||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | $lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | ||
Line 3,110: | Line 3,228: | ||
$lMain->FindField("BankCharge")->AsFloat = 0; | $lMain->FindField("BankCharge")->AsFloat = 0; | ||
$lMain->FindField("DocAmt")->AsFloat = 200.00; | $lMain->FindField("DocAmt")->AsFloat = 200.00; | ||
$lMain->FindField("Cancelled")-> | $lMain->FindField("Cancelled")->AsBoolean = False; | ||
#Knock Off IV | #Knock Off IV | ||
Line 3,118: | Line 3,236: | ||
$lDetail->Edit(); | $lDetail->Edit(); | ||
$lDetail->FindField("KOAmt")->AsFloat = 147.09; #Partial Knock off | $lDetail->FindField("KOAmt")->AsFloat = 147.09; #Partial Knock off | ||
$lDetail->FindField("KnockOff")-> | $lDetail->FindField("KnockOff")->AsBoolean = True; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
Line 3,134: | Line 3,252: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--CN Test--"; | $lMain->FindField("DocNo")->AsString = "--CN Test--"; | ||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime(" | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime(" | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; | $lMain->FindField("Code")->AsString = "300-C0001"; | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
Line 3,155: | Line 3,273: | ||
$lDetail->FindField("Tax")->AsString = "SV"; | $lDetail->FindField("Tax")->AsString = "SV"; | ||
$lDetail->FindField("TaxRate")->AsString = "6%"; | $lDetail->FindField("TaxRate")->AsString = "6%"; | ||
$lDetail->FindField("TaxInclusive")-> | $lDetail->FindField("TaxInclusive")->AsBoolean = False; | ||
$lDetail->FindField("UnitPrice")->AsFloat = 100; | $lDetail->FindField("UnitPrice")->AsFloat = 100; | ||
$lDetail->FindField("Amount")->AsFloat = 100; | $lDetail->FindField("Amount")->AsFloat = 100; | ||
Line 3,188: | Line 3,306: | ||
$lDetail->Edit(); | $lDetail->Edit(); | ||
$lDetail->FindField("KOAmt")->AsFloat = 100; #Partial Knock off | $lDetail->FindField("KOAmt")->AsFloat = 100; #Partial Knock off | ||
$lDetail->FindField("KnockOff")-> | $lDetail->FindField("KnockOff")->AsBoolean = True; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
Line 3,206: | Line 3,324: | ||
$lMain->FindField("DocNo")->AsString = "--CF Test--"; | $lMain->FindField("DocNo")->AsString = "--CF Test--"; | ||
$lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("CODE")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("DocDate")->Value = date("d-m-Y", strtotime(" | $lMain->FindField("DocDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->Value = date("d-m-Y", strtotime(" | $lMain->FindField("PostDate")->Value = date("d-m-Y", strtotime("2025-03-24")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | $lMain->FindField("Description")->AsString = "Payment for A/c"; | ||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | $lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | ||
Line 3,213: | Line 3,331: | ||
$lMain->FindField("BankCharge")->AsFloat = 0; | $lMain->FindField("BankCharge")->AsFloat = 0; | ||
$lMain->FindField("DocAmt")->AsFloat = 6; | $lMain->FindField("DocAmt")->AsFloat = 6; | ||
#Knock Off CN | #Knock Off CN | ||
Line 3,221: | Line 3,338: | ||
$lDetail->Edit(); | $lDetail->Edit(); | ||
$lDetail->FindField("KOAmt")->AsFloat = 4; #Partial Knock off | $lDetail->FindField("KOAmt")->AsFloat = 4; #Partial Knock off | ||
$lDetail->FindField("KnockOff")-> | $lDetail->FindField("KnockOff")->AsBoolean = True; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
Line 3,247: | Line 3,364: | ||
finally | finally | ||
{ | { | ||
# $ComServer->Logout(); | |||
#free the object | #free the object | ||
$ComServer = null; | $ComServer = null; | ||
Line 3,616: | Line 3,733: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
#This action to Post Customer Invoice | #This action to Post Customer Invoice | ||
Line 3,645: | Line 3,762: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--IV Test--"; | $lMain->FindField("DocNo")->AsString = "--IV Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "04 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("Description")->AsString = "Sales"; | $lMain->FindField("Description")->AsString = "Sales"; | ||
Line 3,655: | Line 3,771: | ||
#For Tax Inclusive = True with override Tax Amount | #For Tax Inclusive = True with override Tax Amount | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 1; | $lDetail->FindField("Seq")->value = 1; | ||
$lDetail->FindField("Account")->AsString = "500-000"; #Sales Account | $lDetail->FindField("Account")->AsString = "500-000"; #Sales Account | ||
Line 3,673: | Line 3,787: | ||
#For Tax Inclusive = False with override Tax Amount | #For Tax Inclusive = False with override Tax Amount | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 2; | $lDetail->FindField("Seq")->value = 2; | ||
$lDetail->FindField("Account")->AsString = "500-000"; | $lDetail->FindField("Account")->AsString = "500-000"; | ||
Line 4,275: | Line 4,387: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,311: | Line 4,423: | ||
$lMain->FindField("DocKey")->value = -1; | $lMain->FindField("DocKey")->value = -1; | ||
$lMain->FindField("DocNo")->AsString = "--IS Test--"; | $lMain->FindField("DocNo")->AsString = "--IS Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "04 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Stock Issue"; | $lMain->FindField("Description")->AsString = "Stock Issue"; | ||
#Insert Data - Detail | #Insert Data - Detail | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 1; | $lDetail->FindField("Seq")->value = 1; | ||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | $lDetail->FindField("ItemCode")->AsString = "ANT"; | ||
Line 4,327: | Line 4,437: | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 2; | $lDetail->FindField("Seq")->value = 2; | ||
$lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | $lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | ||
Line 4,389: | Line 4,497: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,415: | Line 4,523: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--Point Test--"; | $lMain->FindField("DocNo")->AsString = "--Point Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
Line 4,584: | Line 4,691: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
#This action to | #This action to | ||
#01. Get Oustanding SO | #01. Get Oustanding SO | ||
Line 4,632: | Line 4,739: | ||
$lDataSet->First(); | $lDataSet->First(); | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--DO Test--"; | $lMain->FindField("DocNo")->AsString = "--DO Test--"; | ||
$lMain->FindField("DocDate")->value = "01 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2021-01-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "01 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2021-01-20")); #YYYY-MM-DD | ||
$lMain->FindField("Code")->AsString = $lDataSet->FindField("Code")->AsString; | $lMain->FindField("Code")->AsString = $lDataSet->FindField("Code")->AsString; | ||
$lMain->FindField("CompanyName")->AsString = $lDataSet->FindField("CompanyName")->AsString; | $lMain->FindField("CompanyName")->AsString = $lDataSet->FindField("CompanyName")->AsString; | ||
Line 4,642: | Line 4,748: | ||
while (! $lDataSet->Eof()){ | while (! $lDataSet->Eof()){ | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("ItemCode")->AsString = $lDataSet->FindField("ItemCode")->AsString; | $lDetail->FindField("ItemCode")->AsString = $lDataSet->FindField("ItemCode")->AsString; | ||
$lDetail->FindField("UOM")->AsString = $lDataSet->FindField("UOM")->AsString; | $lDetail->FindField("UOM")->AsString = $lDataSet->FindField("UOM")->AsString; | ||
Line 4,711: | Line 4,815: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,739: | Line 4,843: | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = "--AJ Test--"; | $lMain->FindField("DocNo")->AsString = "--AJ Test--"; | ||
$lMain->FindField("DocDate")->value = "04 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "04 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2020-04-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Stock Adjustment"; | $lMain->FindField("Description")->AsString = "Stock Adjustment"; | ||
#Insert Data - Detail - Increase Stock Qty | #Insert Data - Detail - Increase Stock Qty | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 1; | $lDetail->FindField("Seq")->value = 1; | ||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | $lDetail->FindField("ItemCode")->AsString = "ANT"; | ||
Line 4,755: | Line 4,856: | ||
$lDetail->FindField("UOM")->AsString = "BOX"; | $lDetail->FindField("UOM")->AsString = "BOX"; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
#Insert Data - Detail - Reduce Stock Qty | #Insert Data - Detail - Reduce Stock Qty | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("Seq")->value = 2; | $lDetail->FindField("Seq")->value = 2; | ||
$lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | $lDetail->FindField("ItemCode")->AsString = "N-CHARGER"; | ||
Line 4,917: | Line 5,017: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 25 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 4,942: | Line 5,042: | ||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | $lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | ||
$lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | $lDetail = $BizObject->DataSets->Find("cdsDocDetail"); #lDetail contains detail data | ||
$lSN = $BizObject->DataSets->Find("cdsSerialNumber"); #lDetail contains detail data | |||
#Find IV Number | #Find IV Number | ||
Line 4,953: | Line 5,054: | ||
$BizObject->Edit(); | $BizObject->Edit(); | ||
$lMain->Edit(); | $lMain->Edit(); | ||
$lMain->FindField("DocDate")->value = " | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-04-24")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = " | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-04-24")); #YYYY-MM-DD | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales-Edited"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales-Edited"; | ||
$lMain->FindField("Address1")->AsString = ""; #Optional | $lMain->FindField("Address1")->AsString = ""; #Optional | ||
Line 4,963: | Line 5,064: | ||
$lMain->FindField("Description")->AsString = "Sales - Edited"; | $lMain->FindField("Description")->AsString = "Sales - Edited"; | ||
$ | $V = array("ANT", "UNIT"); #ItemCode, UOM | ||
if ($lDetail->Locate("ItemCode;UOM", $V, False, False)){ | |||
$lDetail->Edit(); | |||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("Tax")->AsString = ""; | |||
$lDetail->FindField("TaxRate")->AsString = ""; | |||
$lDetail->FindField("TaxInclusive")->value = 0; | |||
$lDetail->FindField("UnitPrice")->AsFloat = 6.00; | |||
$lDetail->FindField("Amount")->AsFloat = 12.00; | |||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | |||
$lDetail->Post(); | |||
} | |||
} else { | } else { | ||
echo "New Invoice<br>"; | echo "New Invoice<br>"; | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocKey")->value = -1; | $lMain->FindField("DocKey")->value = -1; | ||
$lMain->FindField("DocNo")->AsString = $lDocNo; | $lMain->FindField("DocNo")->AsString = #$lDocNo; | ||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | $lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | ||
$lMain->FindField("DocDate")->value = " | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-04-03")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = " | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-04-03")); #YYYY-MM-DD | ||
$lMain->FindField("CompanyName")->AsString = "Cash Sales"; | $lMain->FindField("CompanyName")->AsString = "Cash Sales"; | ||
$lMain->FindField("Address1")->AsString = ""; #Optional | $lMain->FindField("Address1")->AsString = ""; #Optional | ||
Line 4,999: | Line 5,094: | ||
#$lMain->FindField('DocAmt')->value = $Amt; | #$lMain->FindField('DocAmt')->value = $Amt; | ||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | $lDetail->FindField("ItemCode")->AsString = "BOM"; | ||
$lDetail->FindField("Description")->AsString = "Sales Item ANT"; | $lDetail->FindField("Description")->AsString = "Sales Item BOM"; | ||
$lDetail->FindField("UOM")->AsString = "UNIT"; | |||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("Tax")->AsString = ""; | |||
$lDetail->FindField("TaxRate")->AsString = ""; | |||
$lDetail->FindField("TaxInclusive")->value = 0; | |||
$lDetail->FindField("UnitPrice")->AsFloat = 150; | |||
$lDetail->FindField("Amount")->AsFloat = 300; | |||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | |||
$lDetail->Post(); | |||
$lDetail->Append(); | |||
$lDetail->FindField("ItemCode")->AsString = "ANT"; | |||
$lDetail->FindField("Description")->AsString = "Sales Item ANT"; | |||
$lDetail->FindField("UOM")->AsString = "UNIT"; | $lDetail->FindField("UOM")->AsString = "UNIT"; | ||
$lDetail->FindField("Qty")->AsFloat = 1; | $lDetail->FindField("Qty")->AsFloat = 1; | ||
Line 5,010: | Line 5,119: | ||
$lDetail->FindField("Amount")->AsFloat = 100; | $lDetail->FindField("Amount")->AsFloat = 100; | ||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | $lDetail->FindField("TaxAmt")->AsFloat = 0; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
#For Serial Number | |||
$lDetail->Append(); | $lDetail->Append(); | ||
$lDetail->FindField("ItemCode")->AsString = " | $lDetail->FindField("ItemCode")->AsString = "SN"; | ||
$lDetail->FindField("Description")->AsString = "Sales Item | $lDetail->FindField("Description")->AsString = "Sales Serial Number Item"; | ||
$lDetail->FindField("UOM")->AsString = "UNIT"; | $lDetail->FindField("UOM")->AsString = "UNIT"; | ||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lSN->Append; | |||
$lSN->FindField("SERIALNUMBER")->AsString = 'SN-136476'; | |||
$lSN->Post; | |||
$lSN->Append; | |||
$lSN->FindField("SERIALNUMBER")->AsString = 'SN-136477'; | |||
$lSN->Post; | |||
$lDetail->FindField("Qty")->AsFloat = 2; | |||
$lDetail->FindField("Tax")->AsString = ""; | $lDetail->FindField("Tax")->AsString = ""; | ||
$lDetail->FindField("TaxRate")->AsString = ""; | $lDetail->FindField("TaxRate")->AsString = ""; | ||
$lDetail->FindField("TaxInclusive")->value = 0; | $lDetail->FindField("TaxInclusive")->value = 0; | ||
$lDetail->FindField("UnitPrice")->AsFloat = | $lDetail->FindField("UnitPrice")->AsFloat = 100; | ||
$lDetail->FindField("Amount")->AsFloat = | $lDetail->FindField("Amount")->AsFloat = 100; | ||
$lDetail->FindField("TaxAmt")->AsFloat = 0; | $lDetail->FindField("TaxAmt")->AsFloat = 0; | ||
$lDetail->Post(); | $lDetail->Post(); | ||
} | } | ||
$BizObject->Save(); | $BizObject->Save(); | ||
echo "Save with DocNo ".$lMain->FindField("DocNo")->AsString."<br>"; | |||
echo date("d M Y h:i:s A")." - Posting Done<br>"; | echo date("d M Y h:i:s A")." - Posting Done<br>"; | ||
$BizObject->Close(); | $BizObject->Close(); | ||
Line 5,110: | Line 5,228: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 5,146: | Line 5,264: | ||
$BizObject->Edit(); | $BizObject->Edit(); | ||
$lMain->Edit(); | $lMain->Edit(); | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Tenaga Malaysia - Edited"; | $lMain->FindField("Description")->AsString = "Tenaga Malaysia - Edited"; | ||
$lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | $lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | ||
Line 5,172: | Line 5,290: | ||
echo "New PV<br>"; | echo "New PV<br>"; | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = $lDocNo; | $lMain->FindField("DocNo")->AsString = $lDocNo; | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Tenaga Malaysia"; | $lMain->FindField("Description")->AsString = "Tenaga Malaysia"; | ||
$lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | $lMain->FindField("PaymentMethod")->AsString = "310-001"; #GL Bank/Cash account code | ||
Line 5,285: | Line 5,402: | ||
<?php | <?php | ||
echo "Updated | echo "Updated 18 May 2024<br>"; | ||
$ComServer = null; | $ComServer = null; | ||
Line 5,321: | Line 5,438: | ||
$BizObject->Edit(); | $BizObject->Edit(); | ||
$lMain->Edit(); | $lMain->Edit(); | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-20")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Credit Card Charges - Edited"; | $lMain->FindField("Description")->AsString = "Credit Card Charges - Edited"; | ||
$lMain->FindField("Cancelled")->AsString = "F"; | $lMain->FindField("Cancelled")->AsString = "F"; | ||
Line 5,357: | Line 5,474: | ||
echo "New JE<br>"; | echo "New JE<br>"; | ||
$BizObject->New(); | $BizObject->New(); | ||
$lMain->FindField("DocNo")->AsString = $lDocNo; | $lMain->FindField("DocNo")->AsString = $lDocNo; | ||
$lMain->FindField("DocDate")->value = "02 | $lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("PostDate")->value = "02 | $lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2022-02-18")); #YYYY-MM-DD | ||
$lMain->FindField("Description")->AsString = "Credit Card Charges"; | $lMain->FindField("Description")->AsString = "Credit Card Charges"; | ||
$lMain->FindField("Cancelled")->AsString = "F"; | $lMain->FindField("Cancelled")->AsString = "F"; | ||
Line 5,801: | Line 5,917: | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
====Get Description3==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! | ! Get Description 3 Script | ||
|- | |- | ||
| | | | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="PHP"> | ||
<!DOCTYPE html> | |||
<html> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 30 Aug 2024<br>"; | |||
$ComServer = null; | |||
exports.ShowResult = function ShowResult(ADataset){ | function CheckLogin() | ||
var fc, fn, fv, lresult; | { | ||
ADataset.First; | global $ComServer; | ||
while (!ADataset.Eof){ | $ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | ||
fc = ADataset.Fields.Count; | $status = $ComServer->IsLogin(); | ||
for (let i = 0; i < fc; i++) { | |||
fn = ADataset.Fields.Items(i).FieldName; | if ($status == true) | ||
fv = ADataset.FindField(fn).AsString; | { | ||
lresult = "Index : "+ i + " FieldName : " + fn + " Value : " + fv; | # $ComServer->Logout(); | ||
console.log(lresult); | } | ||
} | $ComServer->Login("ADMIN", "ADMIN", #UserName, Password | ||
console.log("===="); | "C:\eStream\SQLAccounting\Share\Default.DCF", #DCF file | ||
ADataset.Next(); | "ACC-0024.FDB"); #Database Name | ||
} | |||
} | |||
function GetData(){ | |||
global $ComServer; | |||
$lSQL = "SELECT Description3, Picture FROM ST_ITEM | |||
WHERE Code='ANT' "; | |||
$lDataSet = $ComServer->DBManager->NewDataSet($lSQL); | |||
if ($lDataSet->RecordCount > 0) { | |||
$lDataSet->First(); | |||
$rtf = $lDataSet->FindField('Description3')->AsString(); | |||
echo $rtf; | |||
echo "<br>== <br>"; | |||
echo "<br>Result after RTF: <br>"; | |||
$txt = $ComServer->Utility->RichTextToPlainText($rtf); | |||
echo "<TEXTAREA rows=10 cols=80 id='edResult1' >".$txt. "</TEXTAREA>"; | |||
echo "<br>== <br>"; | |||
echo "的第一 🐱"; | |||
}else { | |||
echo "Record Not Found"; | |||
} | |||
} | |||
if (isset($_POST['BtnData'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
GetData(); | |||
echo date("d M Y h:i:s A") . " - Done"; | |||
} | |||
finally | |||
{ | |||
#$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Get Data"/> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====AR_PM-Add, Edit & Delete==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! AR_PM-Add, Edit & Delete Script | |||
|- | |||
| | |||
<syntaxhighlight lang="PHP"> | |||
<!DOCTYPE html> | |||
<html> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 24 Sep 2024<br>"; | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | |||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
$status = $ComServer->IsLogin(); | |||
if ($status == true) | |||
{ | |||
$ComServer->Logout(); | |||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\eStream\SQLAccounting\Share\Default.DCF", #DCF file | |||
"ACC-0024.FDB"); #Database Name | |||
} | |||
function PostData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AR_PM"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
$lDetail = $BizObject->DataSets->Find("cdsKnockOff"); #lDetail contains detail data | |||
#Find OR Number | |||
$lDocNo = "--OR Test--"; | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo", $lDocNo); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Edit(); | |||
$lMain->Edit(); | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c - Edited"; | |||
$lMain->FindField("DocAmt")->AsFloat = 550.00; | |||
#Knock Off IV | |||
$V = array("IV", "--CS Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 550; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} else { | |||
echo "New Payment<br>"; | |||
$BizObject->New(); | |||
$lMain->FindField("DocKey")->value = -1; | |||
$lMain->FindField("DocNo")->AsString = $lDocNo; | |||
$lMain->FindField("Code")->AsString = "300-C0001"; #Customer Account | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | |||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | |||
$lMain->FindField("ChequeNumber")->AsString = ""; | |||
$lMain->FindField("BankCharge")->AsFloat = 0; | |||
$lMain->FindField("DocAmt")->AsFloat = 200.00; | |||
$lMain->FindField("Cancelled")->AsString = "F"; | |||
#Knock Off IV | |||
$V = array("IV", "--CS Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 200.0; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} | |||
$BizObject->Save(); | |||
echo "Save with DocNo ".$lMain->FindField("DocNo")->AsString."<br>"; | |||
echo date("d M Y h:i:s A")." - Posting Done<br>"; | |||
$BizObject->Close(); | |||
} | |||
function DelData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AR_PM"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
#Find PV Number | |||
$lDocNo = "--OR Test--"; | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo", $lDocNo); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Delete(); | |||
echo date("d M Y h:i:s A")." - Record deleted<br>"; | |||
} else { | |||
echo date("d M Y h:i:s A")." - Document Not Found<br>"; | |||
} | |||
} | |||
if (isset($_POST['BtnData'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Posting<br>"; | |||
PostData(); | |||
echo date("d M Y h:i:s A")." - Done<br>"; | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
if (isset($_POST['BtnDel'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Delete<br>"; | |||
DelData(); | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Add & Edit AR PM"/> | |||
<input type="submit" name="BtnDel" | |||
value="Delete AR PM"/> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Customer.Statement.RO==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Customer.Statement.RO Script | |||
|- | |||
| | |||
<syntaxhighlight lang="PHP"> | |||
<!DOCTYPE html> | |||
<html> | |||
<head> | |||
<link rel="stylesheet" type="text/css" href="css/Grid.css" /> | |||
</head> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 28 Oct 2024<br>"; | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | |||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
$status = $ComServer->IsLogin(); | |||
if ($status == true) | |||
{ | |||
$ComServer->Logout(); | |||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\\eStream\\SQLAccounting\\Share\\Default.DCF", #DCF file | |||
"ACC-0082.FDB"); #Database Name | |||
} | |||
function SetGrid($DataSet){ | |||
echo "<table>"; | |||
echo "<tr>"; | |||
$DataSet->First(); | |||
$fc = $DataSet->Fields->Count-1; | |||
for ($x = 0; $x <= $fc; $x++) { | |||
#Insert Header | |||
echo "<td>".$DataSet->Fields->Items($x)->FieldName()."</td>"; | |||
} | |||
echo "</tr>"; | |||
#Looping Dataset | |||
while (! $DataSet->Eof()){ | |||
echo "<tr>"; | |||
for ($x = 0; $x <= $fc; $x++) { | |||
$lFN = $DataSet->Fields->Items($x)->FieldName(); | |||
echo "<td>".$DataSet->FindField($lFN)->AsString()."</td>"; | |||
} | |||
echo "</tr>"; | |||
$DataSet->Next(); | |||
} | |||
echo "</table>"."<br>"; | |||
} | |||
function GetData(){ | |||
global $ComServer; | |||
$lSQL = '<?xml version="1.0" standalone="yes"?> <DATAPACKET Version="2.0"><METADATA><FIELDS> | |||
<FIELD attrname="ColumnNo" fieldtype="i4" required="true"/><FIELD attrname="ColumnType" fieldtype="string" WIDTH="1"/> | |||
<FIELD attrname="Param1" fieldtype="i4" required="true"/><FIELD attrname="Param2" fieldtype="i4" required="true"/> | |||
<FIELD attrname="IsLocal" fieldtype="boolean"/><FIELD attrname="HeaderScript" fieldtype="bin.hex" SUBTYPE="Text" WIDTH="1"/> | |||
</FIELDS><PARAMS/></METADATA><ROWDATA><ROW ColumnNo="0" ColumnType="" Param1="0" Param2="0" IsLocal="FALSE"/> | |||
<ROW ColumnNo="1" ColumnType="A" Param1="0" Param2="0" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= 'Current Mth'
end;"/> | |||
<ROW ColumnNo="2" ColumnType="A" Param1="-1" Param2="-1" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '1 Months'
end;"/> | |||
<ROW ColumnNo="3" ColumnType="A" Param1="-2" Param2="-2" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '2 Months'
end;"/> | |||
<ROW ColumnNo="4" ColumnType="A" Param1="-3" Param2="-3" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '3 Months'
end;"/> | |||
<ROW ColumnNo="5" ColumnType="A" Param1="-4" Param2="-4" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '4 Months'
end;"/> | |||
<ROW ColumnNo="6" ColumnType="B" Param1="-999999" Param2="-5" IsLocal="FALSE" HeaderScript="ObjectPascal
begin
Value:= '5 Month & above'
end;"/> | |||
</ROWDATA></DATAPACKET>'; | |||
$lRptVar = $ComServer->RptObjects->Find('Customer.Statement.RO'); | |||
# $lRptVar->Params->Find('AgentData')->AsBlob = ; #Not use if AllAgent is True | |||
$lRptVar->Params->Find('AgingData')->AsString = $lSQL; | |||
$lRptVar->Params->Find('AgingOn')->AsString = 'I'; #Fixed | |||
$lRptVar->Params->Find('AllAgent')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllArea')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllCompany')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllCompanyCategory')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllControlAccount')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllCurrency')->AsBoolean = True; | |||
$lRptVar->Params->Find('AllDocProject')->AsBoolean = True; | |||
# $lRptVar->Params->Find('AreaData')->AsBlob = ; #Not use if AllArea is True | |||
# $lRptVar->Params->Find('CompanyCategoryData')->AsBlob = ; #Not use if AllCompanyCategory is True | |||
# $lRptVar->Params->Find('CompanyData')->AsBlob = ; #Not use if AllCompany is True | |||
# $lRptVar->Params->Find('ControlAccountData')->AsBlob = ; #Not use if AllControlAccount is True | |||
# $lRptVar->Params->Find('CurrencyData')->AsBlob = ; #Not use if AllCurrency is True | |||
# $lRptVar->Params->Find('DocProjectData')->AsBlob = ; #Not use if AllDocProject is True | |||
$lRptVar->Params->Find('DateFrom')->AsDate = '01 Sep 2024'; | |||
$lRptVar->Params->Find('DateTo')->AsDate = '30 Sep 2024'; | |||
$lRptVar->Params->Find('StatementDate')->AsDate = '30 Sep 2024'; # Norm same as DateTo | |||
$lRptVar->Params->Find('SelectDate')->AsBoolean = True; | |||
$lRptVar->Params->Find('IncludeZeroBalance')->AsBoolean = False; | |||
$lRptVar->Params->Find('SortBy')->AsString = 'CompanyCategory;Code;CompanyName;Agent;Area;CurrencyCode;ControlAccount'; | |||
$lRptVar->Params->Find('StatementType')->AsString = 'O'; #O := Open Item, B := B/F | |||
$lRptVar->CalculateReport(); | |||
$lDataSet = $lRptVar->DataSets->Find('cdsMain'); | |||
$lDataSet2 = $lRptVar->DataSets->Find('cdsDocument'); | |||
$lDataSetCO = $lRptVar->DataSets->Find('cdsCompany'); | |||
if ($lDataSet->RecordCount > 0) { | |||
echo "Main Data"."<br>"; | |||
SetGrid($lDataSet); | |||
echo "Detail Invoice"."<br>"; | |||
SetGrid($lDataSet2); | |||
echo "Company Information"."<br>"; | |||
SetGrid($lDataSetCO); | |||
}else { | |||
echo "Record Not Found"; | |||
} | |||
} | |||
if (isset($_POST['BtnData'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
GetData(); | |||
echo "<br>"; | |||
echo date("d M Y h:i:s A")." - Done"; | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Get Data"/> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====AP_SP-Add, Edit & Delete==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! AP_SP-Add, Edit & Delete Script | |||
|- | |||
| | |||
<syntaxhighlight lang="PHP"> | |||
<!DOCTYPE html> | |||
<html> | |||
<body> | |||
<h1>SQL Acc SDK in PHP page</h1> | |||
<?php | |||
echo "Updated 16 Nov 2024<br>"; | |||
$ComServer = null; | |||
function CheckLogin() | |||
{ | |||
global $ComServer; | |||
$ComServer = new COM("SQLAcc.BizApp", null, CP_UTF8) or die("Could not initialise SQLAcc.BizApp object."); | |||
$status = $ComServer->IsLogin(); | |||
if ($status == true) | |||
{ | |||
$ComServer->Logout(); | |||
} | |||
$ComServer->Login("ADMIN", "ADMIN", #UserName, Password | |||
"C:\\eStream\\SQLAccounting\\Share\\Default.DCF", #DCF file | |||
"ACC-0024.FDB"); #Database Name | |||
} | |||
function PostData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AP_SP"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
$lDetail = $BizObject->DataSets->Find("cdsKnockOff"); #lDetail contains detail data | |||
#Find PV Number | |||
$lDocNo = "--PV Test--"; | |||
$lCode = "400-C0001"; | |||
$V = array($lDocNo, $lCode); #DocNo, Supplier Code | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo;Code", $V); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Edit(); | |||
$lMain->Edit(); | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c - Edited"; | |||
$lMain->FindField("DocAmt")->AsFloat = 550.00; | |||
#Knock Off IV | |||
$V = array("PI", "--PI Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 550; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} else { | |||
echo "New Payment<br>"; | |||
$BizObject->New(); | |||
$lMain->FindField("DocKey")->value = -1; | |||
$lMain->FindField("DocNo")->AsString = $lDocNo; | |||
$lMain->FindField("Code")->AsString = $lCode; #Supplier Account | |||
$lMain->FindField("DocDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("PostDate")->value = date("d-m-Y", strtotime("2024-09-23")); #YYYY-MM-DD | |||
$lMain->FindField("Description")->AsString = "Payment for A/c"; | |||
$lMain->FindField("PaymentMethod")->AsString = "320-000"; #Bank or Cash Account | |||
$lMain->FindField("ChequeNumber")->AsString = ""; | |||
$lMain->FindField("BankCharge")->AsFloat = 0; | |||
$lMain->FindField("DocAmt")->AsFloat = 200.00; | |||
$lMain->FindField("Cancelled")->AsString = "F"; | |||
#Knock Off IV | |||
$V = array("PI", "--PI Test--"); #DocType, DocNo | |||
if ($lDetail->Locate("DocType;DocNo", $V, False, False)) { | |||
$lDetail->Edit(); | |||
$lDetail->FindField("KOAmt")->AsFloat = 200.0; | |||
$lDetail->FindField("KnockOff")->AsString = "T"; | |||
$lDetail->Post(); | |||
} | |||
} | |||
$BizObject->Save(); | |||
echo "Save with DocNo ".$lMain->FindField("DocNo")->AsString."<br>"; | |||
echo date("d M Y h:i:s A")." - Posting Done<br>"; | |||
$BizObject->Close(); | |||
} | |||
function DelData(){ | |||
global $ComServer; | |||
$BizObject = $ComServer->BizObjects->Find("AP_SP"); | |||
$lMain = $BizObject->DataSets->Find("MainDataSet"); #lMain contains master data | |||
#Find PV Number | |||
$lDocNo = "--PV Test--"; | |||
$lCode = "400-C0001"; | |||
$V = array($lDocNo, $lCode); #DocNo, Supplier Code | |||
$lDocKey = $BizObject->FindKeyByRef("DocNo;Code", $V); | |||
if ($lDocKey != null){ | |||
echo "Dockey = ".$lDocKey."<br>"; | |||
$BizObject->Params->Find("DocKey")->AsString = $lDocKey; | |||
$BizObject->Open(); | |||
$BizObject->Delete(); | |||
echo date("d M Y h:i:s A")." - Record deleted<br>"; | |||
} else { | |||
echo date("d M Y h:i:s A")." - Document Not Found<br>"; | |||
} | |||
} | |||
if (isset($_POST['BtnData'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Posting<br>"; | |||
PostData(); | |||
echo date("d M Y h:i:s A")." - Done<br>"; | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
if (isset($_POST['BtnDel'])) | |||
{ | |||
try | |||
{ | |||
CheckLogin(); | |||
echo date("d M Y h:i:s A")." - Begin Delete<br>"; | |||
DelData(); | |||
} | |||
finally | |||
{ | |||
$ComServer->Logout(); | |||
#free the object | |||
$ComServer = null; | |||
} | |||
} | |||
?> | |||
<form method="post"> | |||
<input type="submit" name="BtnData" | |||
value="Add & Edit AP SP"/> | |||
<input type="submit" name="BtnDel" | |||
value="Delete AP SP"/> | |||
</form> | |||
</body> | |||
</html> | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
<br> | |||
===Node JS=== | |||
: Module Require in Node JS | |||
:- Winax (Mandatory) -> npm install winax | |||
====Common==== | |||
* Common.js file for example code | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Common Function | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/* Updated 31 Jul 2023 */ | |||
var winax = require('C:\\node_js\\node_modules\\winax'); /* Path where you install winax */ | |||
var cp = require('child_process'); | |||
exports.KillApp = function KillApp(){ | |||
cp.exec('start cmd.exe /C "taskkill /IM "SQLACC.exe" /F"'); | |||
} | |||
exports.CreateSQLAccServer = function CreateSQLAccServer() { | |||
var ComServer; | |||
ComServer = new winax.Object('SQLAcc.BizApp'); | |||
if (!ComServer.IsLogin) { /* check whether user has logon */ | |||
ComServer.Login('ADMIN', 'ADMIN', /* UserName, Password */ | |||
/* 'C\:\\eStream\\SQLAccounting\\Share\\DEFAULT.DCF', */ | |||
'D:\\Happy\\DB\\DEFAULT.DCF', /* DCF File */ | |||
'ACC-0024.FDB'); /* FDB Name */ | |||
} | |||
return ComServer; | |||
} | |||
exports.ShowResult = function ShowResult(ADataset){ | |||
var fc, fn, fv, lresult; | |||
ADataset.First; | |||
while (!ADataset.Eof){ | |||
fc = ADataset.Fields.Count; | |||
for (let i = 0; i < fc; i++) { | |||
fn = ADataset.Fields.Items(i).FieldName; | |||
fv = ADataset.FindField(fn).AsString; | |||
lresult = "Index : "+ i + " FieldName : " + fn + " Value : " + fv; | |||
console.log(lresult); | |||
} | |||
console.log("===="); | |||
ADataset.Next(); | |||
} | |||
} | |||
exports.ShowMsg = function ShowMsgShowMsg(AMsg){ | |||
try { | |||
var WSH = new winax.Object('WScript.Shell'); | |||
WSH.popup(AMsg); | |||
} catch (e) { | |||
console.log(e); | |||
} | |||
} | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Get Company Profile==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Get Company Profile | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/* Updated 22 Jul 2023 */ | |||
var Common = require('./Common'); | |||
var ComServer, lDataSet; | |||
function GetData() { | |||
var lSQL; | |||
lSQL = "SELECT COMPANYNAME, REMARK, BRN, BRN2, GSTNO, "; | |||
lSQL = lSQL + "SALESTAXNO, SERVICETAXNO, "; | |||
lSQL = lSQL + "ADDRESS1,ADDRESS2,ADDRESS3,ADDRESS4 FROM SY_PROFILE "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
Common.ShowResult(lDataSet); | |||
} | |||
try{ | |||
ComServer = Common.CreateSQLAccServer(); | |||
GetData(); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Complete Post==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Complete Post | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/* Updated 22 Jul 2023 | |||
This will doing following posting | |||
01. Cash Sales | |||
02. Sales Credit Note | |||
03. Customer Payment With Knock off | |||
04. Edit Credit Note Posted in Step 02 & Knock Off | |||
05. Customer Refund to Knock off Credit Note | |||
*/ | |||
var Common = require('./Common'); | |||
var ComServer; | |||
function PostDataCS() { | |||
var BizObject, lMain, lDetail; | |||
BizObject = ComServer.BizObjects.Find('SL_CS') ; | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lDetail = BizObject.DataSets.Find('cdsDocDetail'); /*lDetail contains detail data */ | |||
/*Begin Looping yr data*/ | |||
/*Insert Data - Master*/ | |||
BizObject.New(); | |||
lMain.FindField('DocNo').AsString = "--CS Test--"; | |||
lMain.FindField('DocDate').value = "20/12/2022"; | |||
lMain.FindField('PostDate').value = "20/12/2022"; | |||
lMain.FindField('Code').AsString = "300-C0001"; /*Customer Account*/ | |||
lMain.FindField('CompanyName').AsString = "Cash Sales" | |||
lMain.FindField('Address1').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address2').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address3').AsString = ""; /*Optional*/ | |||
lMain.FindField('Address4').AsString = ""; /*Optional*/ | |||
lMain.FindField('Phone1').AsString = ""; /*Optional*/ | |||
lMain.FindField('Description').AsString = "Sales"; | |||
/*Insert Data - Detail*/ | |||
/*For Tax Inclusive = True with override Tax Amount*/ | |||
lDetail.Append(); | |||
lDetail.FindField('Seq').value = 1; | |||
lDetail.FindField('Account').AsString = "500-000"; /*Sales Account*/ | |||
lDetail.FindField('Description').AsString = "Sales Item A"; | |||
lDetail.FindField('Qty').AsFloat = 1; | |||
lDetail.FindField('Tax').AsString = "SV"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 435; | |||
lDetail.FindField('Amount').AsFloat = 410.37; /*Exclding Tax Amt*/ | |||
lDetail.FindField('TaxAmt').AsFloat = 24.63; | |||
lDetail.DisableControls(); | |||
lDetail.FindField('TaxInclusive').value = 1; | |||
lDetail.EnableControls(); | |||
lDetail.Post(); | |||
/*For Tax Inclusive = False with override Tax Amount*/ | |||
lDetail.Append(); | |||
lDetail.FindField('Seq').value = 2; | |||
lDetail.FindField('Account').AsString = "500-000"; | |||
lDetail.FindField('Description').AsString = "Sales Item B"; | |||
lDetail.FindField('Qty').AsFloat = 1; | |||
lDetail.FindField('Tax').AsString = "SV"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 94.43; | |||
lDetail.FindField('Amount').AsFloat = 94.43; | |||
lDetail.FindField('TaxAmt').AsFloat = 5.66; | |||
lDetail.Post(); | |||
/*For With Item Code*/ | |||
lDetail.Append(); | |||
lDetail.FindField('Seq').value = 3; | |||
lDetail.FindField('ItemCode').AsString = "ANT"; | |||
lDetail.FindField('Description').AsString = "Sales Item B"; | |||
/*lDetail.FindField('Account').AsString = "500-000"; If you wanted override the Sales Account Code*/ | |||
lDetail.FindField('Qty').AsFloat = 2; | |||
lDetail.FindField('UOM').AsString = "UNIT"; | |||
/*lDetail.FindField('DISC').AsString = "5%+3"; Optional (eg 5% plus 3 Discount)*/ | |||
lDetail.FindField('Tax').AsString = "SV"; | |||
lDetail.FindField('TaxRate').AsString = "6%"; | |||
lDetail.FindField('TaxInclusive').value = 0; | |||
lDetail.FindField('UnitPrice').AsFloat = 100; | |||
lDetail.FindField('Amount').AsFloat = 200; | |||
lDetail.FindField('TaxAmt').AsFloat = 12; | |||
lDetail.Post(); | |||
/*Save Document*/ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} | } | ||
function PostDataPM() { | |||
var BizObject, lMain, lDetail, v; | |||
BizObject = ComServer.BizObjects.Find('AR_PM') ; | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lDetail = BizObject.DataSets.Find('cdsKnockOff'); /*lDetail contains detail data */ | |||
BizObject.New(); | |||
lMain.FindField('DocNo').AsString = "--PM Test--"; | |||
lMain.FindField('Code').AsString = "300-C0001"; | |||
lMain.FindField('DocDate').value = "20/12/2022"; | |||
lMain.FindField('PostDate').value = "20/12/2022"; | |||
lMain.FindField('Description').AsString = "Payment for A/"; | |||
/ | lMain.FindField('PaymentMethod').AsString = "320-000"; /*Bank or Cash Account*/ | ||
lMain.FindField('ChequeNumber').AsString = ""; | |||
lMain.FindField('BankCharge').AsFloat = 0; | |||
lMain.FindField('DocAmt').AsFloat = 200.00; | |||
lMain.FindField('Cancelled').AsString = "F"; | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'IV'); /*Knock Off DocType IV or DN*/ | |||
v.SetItem(1, '--CS Test--'); /*Knock Off DocNo*/ | |||
if (lDetail.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | |||
lDetail.Edit(); | |||
lDetail.FindField('KOAmt').AsFloat = "147.09"; /*Partial Knock Off*/ | |||
lDetail.FindField('KnockOff').AsString = 'T'; | |||
lDetail.Post(); | |||
} | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} | } | ||
function PostDataCN() { | |||
function | |||
var BizObject, lMain, lDetail; | var BizObject, lMain, lDetail; | ||
BizObject = ComServer.BizObjects.Find(' | BizObject = ComServer.BizObjects.Find('SL_CN') ; | ||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | ||
Line 5,924: | Line 6,720: | ||
/*Insert Data - Master*/ | /*Insert Data - Master*/ | ||
BizObject.New(); | BizObject.New(); | ||
lMain.FindField('DocNo').AsString = "-- | lMain.FindField('DocNo').AsString = "--CN Test--"; | ||
lMain.FindField('DocDate').value = " | lMain.FindField('DocDate').value = "21/12/2022"; | ||
lMain.FindField('PostDate').value = " | lMain.FindField('PostDate').value = "21/12/2022"; | ||
lMain.FindField('Code').AsString = "300-C0001"; /*Customer Account*/ | lMain.FindField('Code').AsString = "300-C0001"; /*Customer Account*/ | ||
lMain.FindField('CompanyName').AsString = "Cash Sales" | lMain.FindField('CompanyName').AsString = "Cash Sales" | ||
Line 5,934: | Line 6,730: | ||
lMain.FindField('Address4').AsString = ""; /*Optional*/ | lMain.FindField('Address4').AsString = ""; /*Optional*/ | ||
lMain.FindField('Phone1').AsString = ""; /*Optional*/ | lMain.FindField('Phone1').AsString = ""; /*Optional*/ | ||
lMain.FindField('Description').AsString = "Sales"; | lMain.FindField('Description').AsString = "Sales Returned"; | ||
/*Insert Data - Detail*/ | /*Insert Data - Detail*/ | ||
/*For | /*For With Item Code*/ | ||
lDetail.Append(); | lDetail.Append(); | ||
lDetail.FindField('Seq').value | lDetail.FindField('Seq').value = 1; | ||
lDetail.FindField(' | lDetail.FindField('ItemCode').AsString = "ANT"; | ||
lDetail.FindField(' | lDetail.FindField('Description').AsString = "Sales Item B"; | ||
lDetail.FindField('Description2').AsString = "Product Spoil"; /*Reason*/ | |||
lDetail.FindField('Remark1').AsString = "--IV Test--"; /*Invoice No*/ | |||
lDetail.FindField('Remark2').AsString = "20 Dec 2022"; /*Invoide Date*/ | |||
lDetail.FindField('Qty').AsFloat = 1; | lDetail.FindField('Qty').AsFloat = 1; | ||
lDetail.FindField('UOM').AsString = "UNIT"; | lDetail.FindField('UOM').AsString = "UNIT"; | ||
lDetail.FindField('Tax').AsString = "SV"; | lDetail.FindField('Tax').AsString = "SV"; | ||
lDetail.FindField('TaxRate').AsString = "6%"; | lDetail.FindField('TaxRate').AsString = "6%"; | ||
lDetail.FindField('TaxInclusive').value = 0; | lDetail.FindField('TaxInclusive').value = 0; | ||
lDetail.FindField('UnitPrice').AsFloat = 100; | lDetail.FindField('UnitPrice').AsFloat = 100; | ||
lDetail.FindField('Amount').AsFloat = | lDetail.FindField('Amount').AsFloat = 100; | ||
lDetail.FindField('TaxAmt').AsFloat = | lDetail.FindField('TaxAmt').AsFloat = 6; | ||
lDetail.Post(); | lDetail.Post(); | ||
Line 5,992: | Line 6,756: | ||
} | } | ||
function | function PostKnockIVCN() { | ||
var BizObject, lMain, lDetail, v; | var BizObject, lMain, lDetail, v, lDocNo, lDocKey; | ||
BizObject = ComServer.BizObjects.Find(' | BizObject = ComServer.BizObjects.Find('AR_CN') ; | ||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | ||
lDetail = BizObject.DataSets.Find('cdsKnockOff'); /*lDetail contains detail data */ | lDetail = BizObject.DataSets.Find('cdsKnockOff'); /*lDetail contains detail data */ | ||
BizObject. | /* Find CN Number */ | ||
lDocNo = "--CN Test--" | |||
lDocKey = BizObject.FindKeyByRef('DocNo', lDocNo); | |||
BizObject.Params.Find('DocKey').Value = lDocKey; | |||
lMain.FindField('DocNo').AsString = "-- | if (lDocKey != null) { | ||
BizObject.Open(); | |||
BizObject.Edit(); | |||
lMain.Edit(); | |||
v = ComServer.CreateOleVariantArray(2); | |||
v.SetItem(0, 'IV'); /*Knock Off DocType IV or DN*/ | |||
v.SetItem(1, '--CS Test--'); /*Knock Off DocNo*/ | |||
if (lDetail.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | |||
lDetail.Edit(); | |||
lDetail.FindField('KOAmt').AsFloat = "100"; /*Partial Knock Off*/ | |||
lDetail.FindField('KnockOff').AsString = 'T'; | |||
lDetail.Post(); | |||
} | |||
/* Save document */ | |||
BizObject.Save(); | |||
BizObject.Close(); | |||
} | |||
} | |||
function PostDataCF() { | |||
var BizObject, lMain, lDetail, v; | |||
BizObject = ComServer.BizObjects.Find('AR_CF') ; | |||
lMain = BizObject.DataSets.Find('MainDataSet'); /*lMain contains master data*/ | |||
lDetail = BizObject.DataSets.Find('cdsKnockOff'); /*lDetail contains detail data */ | |||
BizObject.New(); | |||
lMain.FindField('DocNo').AsString = "--CF Test--"; | |||
lMain.FindField('Code').AsString = "300-C0001"; | lMain.FindField('Code').AsString = "300-C0001"; | ||
lMain.FindField('DocDate').value = " | lMain.FindField('DocDate').value = "24/12/2022"; | ||
lMain.FindField('PostDate').value = " | lMain.FindField('PostDate').value = "24/12/2022"; | ||
lMain.FindField('Description').AsString = "Payment for A/"; | lMain.FindField('Description').AsString = "Payment for A/"; | ||
lMain.FindField('PaymentMethod').AsString = "320-000"; /*Bank or Cash Account*/ | lMain.FindField('PaymentMethod').AsString = "320-000"; /*Bank or Cash Account*/ | ||
lMain.FindField('ChequeNumber').AsString = ""; | lMain.FindField('ChequeNumber').AsString = ""; | ||
lMain.FindField('BankCharge').AsFloat = 0; | lMain.FindField('BankCharge').AsFloat = 0; | ||
lMain.FindField('DocAmt').AsFloat = | lMain.FindField('DocAmt').AsFloat = 6.00; | ||
lMain.FindField('Cancelled').AsString = "F"; | lMain.FindField('Cancelled').AsString = "F"; | ||
v = ComServer.CreateOleVariantArray(2); | v = ComServer.CreateOleVariantArray(2); | ||
v.SetItem(0, ' | v.SetItem(0, 'CN'); /*Knock Off DocType*/ | ||
v.SetItem(1, '-- | v.SetItem(1, '--CN Test--'); /*Knock Off DocNo*/ | ||
if (lDetail.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | if (lDetail.Locate('DocType;DocNo', v.AsOleVariant(), false, false)){ | ||
lDetail.Edit(); | lDetail.Edit(); | ||
lDetail.FindField('KOAmt').AsFloat = " | lDetail.FindField('KOAmt').AsFloat = "4"; /*Partial Knock Off*/ | ||
lDetail.FindField('KnockOff').AsString = 'T'; | lDetail.FindField('KnockOff').AsString = 'T'; | ||
lDetail.Post(); | lDetail.Post(); | ||
Line 6,028: | Line 6,826: | ||
} | } | ||
try{ | |||
ComServer = Common.CreateSQLAccServer(); | |||
console.log("Posting Cash Sales"); | |||
PostDataCS(); | |||
console.log("Posting Payment"); | |||
PostDataPM(); | |||
console.log("Posting Sales CN"); | |||
PostDataCN(); | |||
console.log("Posting Knock Off CN"); | |||
PostKnockIVCN(); | |||
console.log("Posting Customer Refund"); | |||
PostDataCF(); | |||
console.log("Done"); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Get Picture & Description3(Rich Text)==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Get Picture & Description3(Rich Text) Script | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/* Updated 31 Jul 2023 */ | |||
var Common = require('./Common'); | |||
var ComServer, lDataSet; | |||
const fs = require('fs'); | |||
function saveImage(filename, data){ | |||
var myBuffer = new Buffer.alloc(data.length); | |||
for (var i = 0; i < data.length; i++) { | |||
myBuffer[i] = data[i]; | |||
} | |||
fs.writeFile(filename, myBuffer, function(err) { | |||
if(err) { | |||
console.log(err); | |||
} else { | |||
console.log("The Image file was saved!"); | |||
} | |||
}); | |||
} | } | ||
function | function ExpFile(AFName, AData){ | ||
const FN = new console.Console(fs.createWriteStream(AFName)); | |||
FN.log(AData); | |||
} | |||
function GetData() { | |||
var lSQL, txt, rtf; | |||
lSQL = "SELECT Description3, Picture FROM ST_ITEM "; | |||
lSQL = lSQL + "WHERE Code='ANT' "; | |||
lDataSet = ComServer.DBManager.NewDataSet(lSQL); | |||
lDataSet.First; | |||
rtf = lDataSet.FindField('Description3').AsString; | |||
console.log(rtf); | |||
ExpFile('./output.rtf', rtf); | |||
txt = ComServer.Utility.RichTextToPlainText(rtf); | |||
Common.ShowMsg(txt); | |||
/* console.log(txt); <= Not support Unicode */ | |||
ExpFile('./output.txt', txt); | |||
console.log('Done Export'); | |||
saveImage("./Pic.jpg", lDataSet.FindField('Picture').Value); | |||
} | } | ||
try{ | try{ | ||
ComServer = Common.CreateSQLAccServer(); | ComServer = Common.CreateSQLAccServer(); | ||
GetData(); | |||
ComServer.Logout(); | |||
GetData(); | |||
ComServer.Logout(); | |||
} catch(e){ | } catch(e){ | ||
console.error(e.message) | console.error(e.message) | ||
Line 6,234: | Line 6,916: | ||
====Get Stock Qty Balance==== | ====Get Stock Qty Balance==== | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Get | ! Get Stock Qty Balance Script | ||
|- | |- | ||
| | | | ||
Line 6,347: | Line 7,029: | ||
} finally { | } finally { | ||
Common.KillApp(); | Common.KillApp(); | ||
} | |||
</syntaxhighlight> | |||
|} | |||
<div style="float: right;"> [[#top|[top]]]</div> | |||
====Get Build No==== | |||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Get Build No Script | |||
|- | |||
| | |||
<syntaxhighlight lang="nodejsrepl"> | |||
/* Updated 22 Jan 2025 */ | |||
var Common = require('./Common'); | |||
var ComServer, lBuildNo; | |||
function GetData() { | |||
lBuildNo = ComServer.BuildNo; | |||
console.error(lBuildNo); | |||
} | |||
try{ | |||
ComServer = Common.CreateSQLAccServer(); | |||
GetData(); | |||
ComServer.Logout(); | |||
} catch(e){ | |||
console.error(e.message) | |||
} finally { | |||
Common.KillApp(); | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 11,166: | Line 11,876: | ||
<syntaxhighlight lang="delphi"> | <syntaxhighlight lang="delphi"> | ||
procedure TfmMain.dxbb_ST_ItemClick(Sender: TObject); | procedure TfmMain.dxbb_ST_ItemClick(Sender: TObject); | ||
var lMain, lDtl, lBizObj, | var lMain, lDtl, lBar, lBizObj, lDockey: Variant; | ||
lTime : TDateTime; | lTime : TDateTime; | ||
begin | begin | ||
Line 11,174: | Line 11,884: | ||
lMain := lBizObj.DataSets.Find('MainDataSet'); | lMain := lBizObj.DataSets.Find('MainDataSet'); | ||
lDtl := lBizObj.DataSets.Find('cdsUOM'); | lDtl := lBizObj.DataSets.Find('cdsUOM'); | ||
lBar := lBizObj.DataSets.Find('cdsBarcode'); | |||
lDocKey := lBizObj.FindKeyByRef('Code', 'FAIRY'); | |||
try | try | ||
lBizObj.New; | if VarIsNull(lDocKey) then begin | ||
lBizObj.New; | |||
lMain.FindField(' | lMain.FindField('CODE').value := 'FAIRY'; | ||
lMain.FindField('DESCRIPTION').value := 'FAIRY TAIL'; | |||
lMain.FindField('STOCKGROUP').value := 'DEFAULT'; | |||
lMain.FindField('STOCKCONTROL').value := 'T'; | |||
lMain.FindField('ISACTIVE').value := 'T'; | |||
lDtl.Edit; //For 1St UOM | |||
lDtl.FindField('UOM').AsString := 'PCS'; | |||
lDtl.FindField('Rate').AsFloat := 1; | |||
lDtl.FindField('RefCost').AsFloat := 10.2; | |||
lDtl.FindField('RefPrice').AsFloat := 25; | |||
lDtl.Post; | |||
lDtl.Append; //For 2nd UOM | |||
lDtl.FindField('UOM').AsString := 'CTN'; | |||
lDtl.FindField('Rate').AsFloat := 12; | |||
lDtl.FindField('RefCost').AsFloat := 102; | |||
lDtl.FindField('RefPrice').AsFloat := 240; | |||
lDtl.Post; | |||
lBar.Append; //For 1St UOM Barcode | |||
lBar.FindField('Barcode').AsString := '123456'; | |||
lBar.FindField('UOM').AsString := 'PCS'; | |||
lBar.Post; | |||
lBar.Append; //For 2nd UOM Barcode | |||
lBar.FindField('Barcode').AsString := '7890123'; | |||
lBar.FindField('UOM').AsString := 'CTN'; | |||
lBar.Post; | |||
end else begin | |||
lBizObj.Params.Find('Dockey').Value := lDocKey; | |||
lBizObj.Open; | |||
lBizObj.Edit; | |||
lMain.FindField('DESCRIPTION').value := 'FAIRY TAIL WIZARD'; | |||
while lDtl.RecordCount > 0 do begin | |||
lDtl.First; | |||
lDtl.Delete; | |||
end; | |||
//Insert back with new Price | |||
lDtl.Append; //For 1St UOM | |||
lDtl.FindField('UOM').AsString := 'PCS'; //Make sure this always same as b4 delete data | |||
lDtl.FindField('Rate').AsFloat := 1; //Make sure this always same as b4 delete data | |||
lDtl.FindField('RefCost').AsFloat := 22.3; | |||
lDtl.FindField('RefPrice').AsFloat := 52; | |||
lDtl.FindField('ISBASE').AsFloat := 1; | |||
lDtl.Post;; | |||
lDtl.Append; //For 2nd UOM | |||
lDtl.FindField('UOM').AsString := 'CTN'; //Make sure this always same as b4 delete data | |||
lDtl.FindField('Rate').AsFloat := 12; //Make sure this always same as b4 delete data | |||
lDtl.FindField('RefCost').AsFloat := 102.5; | |||
lDtl.FindField('RefPrice').AsFloat := 260.45; | |||
lDtl.FindField('ISBASE').AsFloat := 0; | |||
lDtl.Post; | |||
while lBar.RecordCount > 0 do begin | |||
lBar.First; | |||
lBar.Delete; | |||
end; | |||
lBar.Append; //For 1St UOM Barcode | |||
lBar.FindField('Barcode').AsString := '888888'; | |||
lBar.FindField('UOM').AsString := 'PCS'; | |||
lBar.Post; | |||
lBar.Append; //For 2nd UOM Barcode | |||
lBar.FindField('Barcode').AsString := '999999'; | |||
lBar.FindField('UOM').AsString := 'CTN'; | |||
lBar.Post; | |||
end; | |||
lBizObj.Save; | lBizObj.Save; | ||
Line 11,200: | Line 11,968: | ||
finally | finally | ||
lBizObj.Close; | lBizObj.Close; | ||
lMain := null; | |||
lDtl := null; | |||
lBar := null; | |||
lBizObj := null; | |||
lBizApp := null; | |||
end; | end; | ||
end; | end; | ||
Line 12,087: | Line 12,860: | ||
===Still can't open CHM file?=== | ===Still can't open CHM file?=== | ||
# Login SQL Accounting | # Login SQL Accounting | ||
# Click Tools | Options | # Click Tools | Options | General | ||
# Click Register & follow wizard | # Click Register & follow wizard | ||
# Exit SQL Accounting | # Exit SQL Accounting | ||
Line 12,349: | Line 13,122: | ||
... | ... | ||
lDetail.Append(); | lDetail.Append(); | ||
lDetail.FindField("Seq").value = 3; | lDetail.FindField("Seq").value = 3; | ||
lDetail.FindField("ItemCode").AsString = "ANT"; | lDetail.FindField("ItemCode").AsString = "ANT"; | ||
Line 12,358: | Line 13,129: | ||
'''lDetail.FindField("Qty").AsFloat = 2;''' | '''lDetail.FindField("Qty").AsFloat = 2;''' | ||
//lDetail.FindField("DISC").AsString = "5%+3"; //Optional(eg 5% plus 3 Discount) | //lDetail.FindField("DISC").AsString = "5%+3"; //Optional(eg 5% plus 3 Discount) | ||
lDetail.FindField("Tax").AsString = " | lDetail.FindField("Tax").AsString = "SV"; | ||
lDetail.FindField("TaxRate").AsString = "6%"; | lDetail.FindField("TaxRate").AsString = "6%"; | ||
lDetail.FindField("TaxInclusive").value = | lDetail.FindField("TaxInclusive").value = False; | ||
lDetail.FindField("UnitPrice").AsFloat = 100; | lDetail.FindField("UnitPrice").AsFloat = 100; | ||
lDetail.FindField("Amount").AsFloat = 200; | lDetail.FindField("Amount").AsFloat = 200; | ||
Line 12,374: | Line 13,145: | ||
: Default is null & each changes will +1. | : Default is null & each changes will +1. | ||
: So if you see 2 meaning it had being update 2 times | : So if you see 2 meaning it had being update 2 times | ||
: Only available in | |||
:* Version 1001.858 & above | |||
: In Each table it had a field call <span style="color:#0000ff">LASTMODIFIED</span>. | |||
: The value is '''Epoch Time''' or '''Unix Time''' | |||
'''Master Data''' | '''Master Data''' | ||
Line 12,857: | Line 13,633: | ||
</pre> | </pre> | ||
|} | |} | ||
<div style="float: right;"> [[#top|[top]]]</div> | |||
===Why the TAXEXEMPTIONREASON field become empty even I have pass the value in?=== | |||
:Make sure the TAXRATE field is set to empty | |||
<pre> | |||
.... | |||
lDtl.FindField('Tax').AsString := 'SVE'; | |||
lDtl.FindField('TaxRate').AsString := ''; | |||
lDtl.FindField('TaxExemptionReason').AsString := 'my tax exemption reason'; | |||
... | |||
</pre> | |||
<div style="float: right;"> [[#top|[top]]]</div> | <div style="float: right;"> [[#top|[top]]]</div> | ||
Latest revision as of 01:43, 14 March 2025
Introduction
This is the "Bridge" direct live linking between External Program with SQL Accounting
Pros
- Can Live or Batch Update.
- Can do action such as New, Edit & Delete.
- About 95% of modules is covered.
- Can direct Retrieve/Get Information From Connected Database.
- Able to do Automation (i.e. auto login & update data).
- Support GST & SST.
- Free of Charge (Freeware) for End User on SDK Linking.
Cons
- Must had programming knowledge.
- Must had SQL Accounting installed & running.
- Must self do checking else error prompt will unable to “capture”.
- Only supported in IE for JScript
Requirement
- Microsoft Windows 8.1 and above (recommended with 64 bits windows)
- Intel i5, i7 and above computer.
- 8 GB of RAM (recommended 12 GB and above).
- Firebird (For Automatic Login & Logout Only)
- SQL Accounting
- Windows Scheduler (For Automatic Login & Logout Only)
Documentation
Linking Flow
- Highlight in Yellow Color is the Windows base Application/Function you need to Develop/Create.
Example 1 - POS System
Example 2 - Cloud/Mobile System
Example 3 - Cloud/Mobile System with SQL Connect Public
- The SDK can be build in in your system or a Standalone windows Application(Middle Application).
- If you build in your system then it can be sync anytime either by a special interface with parameter (eg Date From, Date To & etc) or each transaction after post(not recommended)
- If you create a Standalone windows Application(Middle Application) you can make use the Windows Schedule to sync or call from you system to execute/run the Standalone windows Application(Middle Application).
Steps
CHM File
- Install SQL Accounting Click here
- Create Sample Data
- Login (username & password is Admin)
- Double click the SQLSDK.chm file
- Click Application Object | Business Objects
- Click the word "here"
- Click Yes
- In the list Look for (example)
- - AR_IV -> Customer Invoice
- - AR_CN -> Customer Credit Note
- - AP_PI -> Supplier Invoice
- - SL_IV -> Sales Invoice
- - PH_PI -> Purchase Invoice
- - ST_AJ -> Stock Adjustment
External Application Linking
- Login SQL Accounting
- Login External Application
- Click Post to SQL Accounting button or Click Save button from External Application.
- ----------------------------------------------------------------------------------------------------------------------------------------------------
- ----------------------------------------------------------------------------------------------------------------------------------------------------
Available Programming Language
Example External Program
VB. Net
- Example VBDotNet-20230819
C Sharp
- Example CSharp-20230819
Steps (C Sharp & VB.Net Only)
The example video is how to
- 01. Open DCF in D:\Happy\DB\Default.DCF
- 02. Datatabase is ACC-0008.FDB
- 03. Click Complete Post button
- 04. Where to check in SQL accounting after Post (Steps-2.gif)
Available Function
- - Complete Post - SL_CS, SL_CN, AR_PM, AR_CN & AR_CF
- - Batch Post - Cash Sales - SL_CS
- - Batch Post...2 DB
- - Batch Post...2 DCF
- - Add Stock Assembly with Override Raw Materials - ST_AS
- - Add Stock Job Order to Stock Assembly with Override Raw Materials - PD_JO & ST_AS
- - Add Agent - Agent
- - Get Agent Description
- - Add Journal Voucher - Add GL JE
- - Edit GL Journal Voucher - Edit GL_JE
- - Edit Sales Cash Sales - SL_CS
- - Delete Cash Sales - Del SL CS - SL_CS
- - Customer Aging - Customer.Aging.RO
- - Get Sales Invoice Listing - Sales.IV.RO
- - Stock Item List
- - Add SKU with Edit SKU - ST_ITEM
- - Del SKU - ST_ITEM
- - Get DCF Database List
- - Month End - FIFO
- - Month End - WA (Weighted Average)
- - Get Options...(Perform Tax / Local Amount Rounding, 5 Cents Rounding (Sales Invoice) & 5 Cents Rounding (Cash Sales)
- - Get Next Invoice No.
- - Is Valid ST_Item
- - Is Valid GL_Acc
- - Outstanding SO - Sales.OutstandingSO.RO
- - Read RTF n Picture Data...
- - Get Customer List - AR_Customer
- - Add Customer with Edit Customer - AR_Customer
- - Del Customer - AR_Customer
- - Add GL Payment Voucher - Add GL_PV
- - Transfer Document - DO to SL_IV
- - Get Transfer Info. 1 - At Invoice Find DO Number & Date
- - Get Transfer Info. 2 - At DO Find Invoice Number & Date
- - GL Ledger
- - Add Stock Transfer - Add ST XF
- - Add Stock Adjustment - Add ST AJ
- - Get Serial Number Balance - Serial No. Bal.
- - Add Customer Deposit - Deposit
- - Transfer Customer Deposit to Payment - Deposit to PM
- - Refund Deposit - Deposit Refund
- - Forfeit Deposit - Deposit Forfeit
- - Enable Support DocNo Format with Month & Year Format
- - Add AR IV
- - Add AR CN
- - Add AR PM Bounce Chq
- - Add GL Ledger RO
- - AR Statement
- - Add Add/Edit AR PM
- - Add LogInOut (For Testing purpose)
History - C Sharp & VB.Net
- 19 Aug 2023...
- - Add Add/Edit AR PM
- - Add LogInOut (For Testing purpose)
- 14 Jun 2022
- - Add AR Statement
- - Fix Error when click 2nd time for Report.
- 27 Apr 2022
- - Add/Edit Location
- - Rename Caption for Add Customer to Add/Edit Cust
- - Rename Caption for Add Agent to Add/Edit Agent
- - Add Reconnect
- - Add/Edit ST_Batch
- - Fix bug on KillApp should Sleep 2 seconds after run the KillApp
- 18 Mar 2021
- - Enable Support DocNo Format with Month & Year Format
- - Add AR IV
- - Add AR CN
- - Add AR PM Bounce Chq
- - Add GL Ledger RO
- 22 May 2020
- - Fix Complete Post Action cause SQLAcc still not exit after logout
- - Add/Edit Customer Contra
- 28 Mar 2020
- - SL DO to SL IV button - Check Transfer Status should excluded Cancelled
- - Add Get Transfer Info. 1 - At Invoice Find DO Number & Date
- - Add Get Transfer Info. 2 - At DO Find Invoice Number & Date
- 04 Mar 2020
- - Add Post with Serial Number for Complete Post
- - Fix Posting Seq Error on Complete Post
- - Add GL JE
- - Add GL_PV
- - Add Additional Note for Outstanding SO button
- 05 Feb 2020
- - Add Customer Deposit
- - Add Customer Deposit to PM
- - Add Customer Deposit Refund
- - Add Customer Deposit Forfeit
- - Add SL DO to SL IV
- - Add 12 Months Aging Parameter for Customer.Aging.RO
- - Add Add ST AJ - Stock Adjustment
- - Add Add ST XF - Stock Transfer
- 22 Oct 2019
- - Add GL Ledger function
- - Add Cust. IV Listing function
- - Add Serial No. Bal function
- - Fixed Error on Auto Logout Error when using ComServer.DBManager.NewDataSet(lSQL)
- 23 Aug 2019
- - Add Del SKU function
- - Add Customer List... function
- - Add Add Customer function
- - Add Del Customer function
- - Add Del SL CS function
- 31 Jul 2019
- - Add Read RTF n Picture Data... function.
- 10 Jul 2019
- - Fixed KillApp function not working in some situation.
- 11 Jun 2019
- - Fixed Auto Logout Prompt Error.
- - Fixed SQLAcc not Fully Exit when Call Auto Logout.
- - Fixed Batch Post 2 DB error for CSharp
- 06 Jun 2019
- - Fixed unable to Update Stock Item for Add SKU.
- - Add Update UOM for Add SKU.
- - Add C Sharp Coding
- 23 May 2019
- - Update Complete Post - Add Description3 (More Description)
- - Fixed Batch Post.. keep login when looping
- - Add Get Outstanding SO - Sales.OutstandingSO.RO
- 05 May 2019
- - Add Condition for Stock Item List only filter if edCode is not empty
- - Add Prompt Message If Login Fail
- - Add SQLAcc Build No Condition for Get Sales Invoice Listing to support version 776 & above
- - Add SKU - ST_ITEM
ASP.Net C Sharp
01. Make sure Enabled the following function in IIS Manager - Sites - YourSiteName - Authentication
- - Anonymous Authentication
- - ASP.Net Impersonation (Make sure set Specific user (Windows Login User & Password))
02 Make sure the Windows user set in ASP.Net Impersonation is Login
- Example ASPDotNet-20210816
Available Function
- - Get Agent Description
- - New & Update Customer/Supplier Info.
- - Edit Cash Sales
- - Edit Purchase Invoice
- - Complete Post
- - GL PV
- - Add Add/Edit Agent
- - Add Add/Edit Terms
- - Add Add/Edit ST Item
- - Delete Cash Sales
- - Add SL SO
History
- 16 Aug 2021
- - Add SL SO
- 19 Feb 2021
- - Delete Cash Sales
- 16 Sep 2020
- - Add Add/Edit ST Item
- - Fix some comment note error
- 23 Jun 2020
- - Add Add/Edit Agent
- - Add Add/Edit Terms
- 22 May 2020
- - Add Edit Purchase Invoice
- - Add Complete Post
- - Add GL PV
- 06 Dec 2019
- - Add Edit Cash Sales
- - Enable Run Time Set User Name, Password, DCF & FDB
Python
- Module Require in Python
- - pypiwin32 (Mandatory) -> pip install pypiwin32
- - Pillow (Optional for Picture) -> pip install Pillow
Common
- Common.py file for example code
ExpandCommon Function |
---|
Agent
ExpandAgent Script |
---|
Get Company Profile
ExpandGet Company Profile |
---|
Complete Post
ExpandSL_CS, AR_PM, SL_CN & AR_CN Script |
---|
Get Picture & Description3(Rich Text)
ExpandGet Picture & Description3(Rich Text) Script |
---|
Get Invoice Next Number
ExpandGet Invoice Next Number Script |
---|
Stock Item
ExpandStock Item Script |
---|
AR_Customer
ExpandAR_Customer Script |
---|
Sales Invoice
ExpandSL_IV |
---|
Purchase Invoice
ExpandPH_PI |
---|
GL Ledger
ExpandGL Ledger Script |
---|
GL Trial Balance
ExpandGL Trial Balance Script |
---|
Terms
ExpandTerms |
---|
Stock Adjustment
ExpandST_AJ |
---|
Sales Order
ExpandSales Order |
---|
Sales.PriceHistory.RO
ExpandSales.PriceHistory.RO Script |
---|
Get Edited Sales Invoice List
ExpandGet Edited Sales Invoice List Script |
---|
SO to DO
ExpandGet Outstanding SO by SO Number transfer to DO Script |
---|
Stock Month End - Weighted Average
ExpandStock Month End - Weighted Average Script |
---|
Stock Month End - FIFO
ExpandStock Month End - FIFO Script |
---|
Login 2 Database
ExpandLogin 2 Database |
---|
Get Stock Qty Balance
ExpandGet Stock Qty Balance |
---|
Maintain Asset Item
ExpandMaintain Asset Item |
---|
Customer Payment
ExpandAR_PM |
---|
Customer Due Listing
ExpandCustomer Due Listing |
---|
PHP
- Tested PHP Version : 7.4.3/8.1.10
- Add this in ..\xampp\php\php.ini
[PHP_COM_DOTNET] extension=php_com_dotnet.dll
- Grid.css file for example code
ExpandGrid.css file |
---|
Get Agent
ExpandGet Agent Script |
---|
Add & Edit Agent
ExpandAdd & Edit Agent Script |
---|
Delete Agent
ExpandDelete Agent Script |
---|
Complete Post
ExpandSL_CS, AR_PM, SL_CN & AR_CN Script |
---|
Get Invoice Next Number
ExpandGet Invoice Next Number Script |
---|
Add & Edit AR_Customer
ExpandAdd & Edit AR_Customer Script |
---|
Get Stock List
ExpandGet Stock List Script |
---|
AR_IV
ExpandAR_IV Script |
---|
Get Outstanding Invoice List
ExpandGet Outstanding Invoice List Script |
---|
Stock Month End - Weighted Average
ExpandStock Month End - Weighted Average Script |
---|
Stock Month End - FIFO
ExpandStock Month End - FIFO Script |
---|
Add & Edit Stock Item
ExpandAdd & Edit Stock Item Script |
---|
Add Stock Issue
ExpandAdd Stock Issue Script |
---|
Add Points
ExpandAdd Points Script |
---|
AR_CN
ExpandAR_CN Script |
---|
SO to DO
ExpandSO to DO Script |
---|
ST_AJ
ExpandST_AJ Script |
---|
Get Stock Serial Number balance
ExpandGet Stock Serial Number Balance List Script |
---|
SL_IV-Add, Edit & Delete
ExpandInsert, Edit & Delete Invoice Script |
---|
GL_PV-Add, Edit & Delete
ExpandInsert, Edit & Delete Invoice Script |
---|
GL_JE-Add, Edit & Delete
ExpandInsert, Edit & Delete Invoice Script |
---|
Get Outstanding SO List
ExpandGet Outstanding SO List Script |
---|
Get Stock Item Picture
ExpandGet Stock Item Picture Script |
---|
Customer.Aging.RO
ExpandCustomer.Aging.RO Script |
---|
Get Description3
ExpandGet Description 3 Script |
---|
AR_PM-Add, Edit & Delete
ExpandAR_PM-Add, Edit & Delete Script |
---|
Customer.Statement.RO
ExpandCustomer.Statement.RO Script |
---|
AP_SP-Add, Edit & Delete
ExpandAP_SP-Add, Edit & Delete Script |
---|
Node JS
- Module Require in Node JS
- - Winax (Mandatory) -> npm install winax
Common
- Common.js file for example code
ExpandCommon Function |
---|
Get Company Profile
ExpandGet Company Profile |
---|
Complete Post
ExpandComplete Post |
---|
Get Picture & Description3(Rich Text)
ExpandGet Picture & Description3(Rich Text) Script |
---|
Get Stock Qty Balance
ExpandGet Stock Qty Balance Script |
---|
SO to DO
ExpandSO to DO Script |
---|
Get Build No
ExpandGet Build No Script |
---|
VB Script
Get Company Profile
ExpandCompany Profile Script |
---|
Complete Post
ExpandSL_CS, AR_PM, SL_CN & AR_CN Script |
---|
AR_IV
ExpandAR_IV Script |
---|
AR_IV-Edit
ExpandAR_IV Edit Script |
---|
AR_PM
ExpandAR_PM Script |
---|
AR_PM-Edit
ExpandAR_PM Edit Script |
---|
Customer.RO
ExpandCustomer.RO Report Object Script |
---|
Customer.Statement.RO
ExpandCustomer.Statement.RO Report Object Script |
---|
GL.CB.RO
ExpandGL.CB.RO Report Object Script |
---|
AR_Customer
ExpandAR_Customer - Script |
---|
AR_Customer-Edit
ExpandAR_Customer - Edit Script |
---|
GL.TrialBalance.RO
ExpandGL Trial Balance Report Object Script |
---|
Customer.Aging.RO
ExpandCustomer Aging Report Object Script |
---|
GL.JE.RO
ExpandGL Journal Voucher Report Object Script |
---|
SL_CS
ExpandSL_CS Script |
---|
Customer.PM.RO
ExpandCustomer.PM.RO Script |
---|
Sales.IV.RO
ExpandSales.IV.RO Script |
---|
Customer.DueDocument.RO
ExpandCustomer.DueDocument.RO Script |
---|
Customer.IV.RO
ExpandCustomer.IV.RO Script |
---|
Sales.OutstandingSO.RO
ExpandSales.OutstandingSO.RO Script |
---|
Common.PaymentMethod.RO
ExpandCommon.PaymentMethod.RO Script |
---|
Common.Agent.RO
ExpandCommon.Agent.RO Script |
---|
Stock.Item.RO
ExpandStock.Item.RO Script |
---|
Stock Item Balance
ExpandGet Stock Item Balance Script |
---|
ST_IS
ExpandST_IS Script |
---|
ST_RC
ExpandST_RC Script |
---|
ST_AJ
ExpandST_AJ Script |
---|
ST_XF
ExpandST_XF Script |
---|
AP_PI-Edit
ExpandAP_PI Edit Script |
---|
SL_DO to SL_IV
ExpandSL_DO to SL_IV Script |
---|
SL_IV-Edit
ExpandSL_IV-Edit Script |
---|
GL_JE
ExpandGL_JE Script |
---|
GL_JE-Edit
ExpandGL_JE-Edit Script |
---|
GL_JE-Delete
ExpandGL_JE-Delete Script |
---|
Get Invoice Next Number
ExpandGet Invoice Next Number Script |
---|
Auto Run Doc. Number
ExpandSales Order Auto Run Doc Number Script |
---|
GL_PV
ExpandCash Book PV Script |
---|
ST_Item with Opening
ExpandST_Item with Opening Script |
---|
GL Stock Value-Insert,Edit & Delete
ExpandGL Stock Value Insert, Edit & Delete Script |
---|
Stock Item Template to SL_IV
ExpandStock Item Template to SL_IV Script |
---|
AR_CN
ExpandAR_CN Script |
---|
JScript/JavaScript
This Script only can run using Internet Explorer (till IE 11)
AR_IV
ExpandAR_IV Script |
---|
SL_CS
ExpandSL_CS Script |
---|
AR_PM
ExpandAR_PM Script |
---|
Customer.IV.RO
ExpandCustomer.IV.RO Report Object Script |
---|
Customer.RO
ExpandCustomer.RO Report Object Script |
---|
Get Next IV Number
ExpandGet Next IV Number Script |
---|
Customer & Supplier Contra
ExpandCustomer & Supplier Contra Script |
---|
Add Stock Item
ExpandAdd ST_Item Script |
---|
Get Company Profile
ExpandGet Company Profile Script |
---|
Delphi
The below example is assuming after you had check the login status.
GL_JE
ExpandGL_JE Script |
---|
GL_PV
ExpandGL_PV Script |
---|
AR_Customer
ExpandAR_Customer Script |
---|
AR_PM
ExpandAR_PM Script |
---|
AR_PM-Edit
ExpandAR_PM Script |
---|
ST_Item
ExpandST_Item Script |
---|
ST_Item-Edit
ExpandST_Item Script |
---|
SL_IV
ExpandSL_IV Script |
---|
Customer.IV.RO
ExpandCustomer.IV.RO Report Object Script |
---|
Stock.Item.RO
ExpandStock.Item.RO Report Object Script |
---|
Customer.Statement.RO
ExpandCustomer.Statement.RO Report Object Script |
---|
GL Account List For Sales & Purchase 1
ExpandGL_Acc Object Script |
---|
GL Account List For Sales & Purchase 2
ExpandGL_Acc Object Script |
---|
Customer.Aging.RO
ExpandCustomer Aging Report Object Script |
---|
GL.CB.RO
ExpandGL Cash Book Report Object Script |
---|
AR_DP
ExpandCustomer Deposit Script |
---|
Customer Deposit to Customer Payment
ExpandCustomer Deposit to Customer Payment Script |
---|
AR_DPDTL_REFUND
ExpandCustomer Deposit Refund Script |
---|
AR_DPDTL_FORFEIT
ExpandCustomer Deposit Forfeit Script |
---|
FAQ
Problem with opening CHM Help files?
- Right click the chm file & select Properties
- At General tab Click Unblock button.
- Click Apply | Ok.
Still can't open CHM file?
- Login SQL Accounting
- Click Tools | Options | General
- Click Register & follow wizard
- Exit SQL Accounting
- Login SQL Accounting
- Run CHM File
Why when I compile my program with stated unknown method or unknown identifier?
- If you compiler had error may try add the esfw10.dll file under the SQL Accounting\bin folder
How to make sure I login to correct database?
- Can use the Common.Agent.RO Report Objects to get the Profile info.
- Then use the cdsProfile Dataset
- - CompanyName Field
- - Remark Field
- Refer to Get Company Profile
Why after post to SQL Accounting the Description3 (More Description)/Notes field it show like this "M y D e s c r i p t i o n" instead of "My Description"?
- Make sure you use .AsString in your code (see example below)
ExpandDescription3 Field Script/Code |
---|
Can I Ignore Doc No Field & let SQL Accounting to Auto Assign?
- Yes but we not recommended as you will lost track when user wanted to know which Doc No in SQL Acc is posted.
- To Set Auto Assign set it as below
ExpandDocNo Field Script/Code |
---|
Can I Auto Login & Logout SQL Accounting when doing & after Posting?
- Yes can below is example script
- Only work if that PC is no once is using SQL Accounting
ExpandC Sharp |
---|
ExpandDelphi |
---|
ExpandVB Script |
---|
When Post System Prompt Operation aborted Error
- This happen when the Login User ID don't had the to Override Sales Min/Max Price &
- Use Last Price XXX (In Tools | Options | Unit Price) &
- 1 of record is below Min Price.
Solution
- Can try change the Posting Seq like below (UOM then Qty)
ExpandSequence Field Script/Code |
---|
How do my system know there is a changes or update in SQLAccounting?
Data Entry
- In all Document it had a field call UPDATECOUNT.
- Default is null & each changes will +1.
- So if you see 2 meaning it had being update 2 times
- Only available in
- Version 1001.858 & above
- In Each table it had a field call LASTMODIFIED.
- The value is Epoch Time or Unix Time
Master Data
- Only available in
- Version 842.765 & above
- AP_SUPPLIER (Maintain Supplier)
- AR_CUSTOMER (Maintain Customer)
- ST_GROUP (Maintain Stock Group)
- ST_ITEM (Maintain Stock Item)
- ST_ITEM_TPL (Maintain Item Template)
- ST_PRICETAG (Maintain Price Tag)
- TAX (Maintain Tax)
- In Each table it had a field call LASTMODIFIED.
- The value is Epoch Time or Unix Time
You can use below function to get the field
Expandvbs |
---|
ExpandDelphi |
---|
Can I control my Stock when I link with other Application?
- Yes. We suggest to use Stock Transfer to (eg Location call MOBILE) transfer stock as Reserve to avoid stock over deduct in SQL Accounting
- When other Application post to SQL Accounting they just need set the Location to the Reserve Location (eg MOBILE)
- Below is example posting with location
ExpandPost Location Field Script/Code |
---|
Where to Check the SQL Accounting DCF Path, FileName & FDB FileName?
- In Login Screen Click 3 Dot Button then you can see the information
- For SQL Accounting Version 5.2023.957.831 and below
- For SQL Accounting Version 5.2023.958.832 and above
How to check & What is the value for Advance Credit Control in Maintain Customer
- You can use ComServer.DBManager.NewDataSet(lSQL) function to Query the information
- lSQL = SELECT * FROM AR_CUSTOMERCRCTRL
- You may refer to ControlType column
ControlType | Exceed Credit Limit | Exceed OverDue Limit |
---|---|---|
0 | UnBlock | UnBlock |
1 | UnBlock | Block |
2 | UnBlock | Override |
3 | Block | UnBlock |
4 | Block | Block |
5 | Block | Override |
6 | Override | UnBlock |
7 | Override | Block |
8 | Override | Override |
9 | Suspended |
How to get Error/Exception Message Return from SQL Accounting?
ExpandC Sharp |
---|
ExpandPython |
---|
ExpandVB.Net |
---|
ExpandDelphi |
---|
Why Post to SQL Accounting sometime prompt Catastrophic failure Error?
Possible Problem 1
- Make sure you code don't cross over Call action during posting
- Eg Posing SL_SO Header partly then suddenly call other object example Check Customer Code Validity
- Summary action (Correct Steps)
- 01. Do Verify 1st (eg Check Customer Code Validity & etc)
- 02. Post Transactions
Possible Problem 2
- Keep Login & Logout till windows not enough time to response
- Summary action (Correct Steps)
- 01. Pull Data from Your application/web
- 02. Login SQL Accounting 1 time (Auto Login)
- 03. Do all your requirement actions (eg. verify, query & posting)
eg Posting Cash Sales & Customer Payment begin looping BizObject = ComServer.BizObjects.Find("SL_CS") .... BizObject.Save BizObject.Close FreeBiz(BizObject) BizObject = ComServer.BizObjects.Find("AR_PM") .... BizObject.Save BizObject.Close FreeBiz(BizObject) Next Record End looping
- 04. Logout SQL Accounting 1 time (Auto Logout)
- 05. Push Data to Your application/web (if any)
Possible Problem 3
- Company Profile Logo format had problem.
- Solution
- 01. Click File | Company Profile
- 02. Export out the Logo by right Click the Company Logo
- 03. Open the Exported Logo with Photo Editor
- 04. Just Click File | Save again as jpg.
- 05. Load Back the Save Logo by right Click the Company Logo
- 06. Click Save
How to Get the GL Account List for Sales & Purchase?
- You can use the function ComServer.DBManager.NewDataSet(lSQL) with the following SQL
SELECT Code, Description, Description2 FROM GL_ACC A WHERE (A.Parent<>-1 AND NOT (EXISTS (SELECT Parent FROM GL_ACC B WHERE A.DocKey=B.Parent)) AND (A.SpecialAccType IS NULL OR A.SpecialAccType IN ('', 'AD'))) ORDER BY Code
Can I setup a testing/Staging environment for SQL Accounting?
- Yes can, you can self setup or we can help you to setup.
- There are 4 types of Testing/Staging
- 01. Install the Testing SQL Accounting version & Testing Database in the developer PC
- 02. Install the Live SQL Accounting version & User Backup Database in the developer PC
- - Require User Permission for Backup
- 03. Setup at User PC/Server & using User Backup Database
- - Require User Permission for Backup & PC/Server setup
- 04. Setup at User PC/Server & using Testing Database
- - Require User Permission for PC/Server setup
How to Loop & post SQL Accounting?
- Below summary how to loop
- 01. Call ComServer
- 02. Check Login
- 03. Call BizObject (eg SL_CS)
- 04. Begin Loop you data
- 05. Call Close BizObject (eg BizObject.Close)
- 06. Continue Call other BizObject (eg AR_PM)
- 07. Repeat Steps 4 & 5
- 08. Call Logout
- 09. Free ComServer
How to post Description3 with Unicode?
- You have to convert it to rtf format before set to Description3 field
ExpandC Sharp |
---|
ExpandVB.Net |
---|
ExpandDelphi |
---|
- or Can use our build in Utility function (only available from 5.2022.941.822 & above)
.... lDtl.FindField("Description3").AsString = ComServer.Utility.PlainTextToRichText("ANTENNA ??? ??") ...
ExpandPHP |
---|
Why the TAXEXEMPTIONREASON field become empty even I have pass the value in?
- Make sure the TAXRATE field is set to empty
.... lDtl.FindField('Tax').AsString := 'SVE'; lDtl.FindField('TaxRate').AsString := ''; lDtl.FindField('TaxExemptionReason').AsString := 'my tax exemption reason'; ...
See also
- Need assistance? May email to support@sql.com.my