2017-07-08 32 views
1

我使用下面的代碼片段使用qbfc爲員工創造檢查:我們如何使用qbfc創建員工工資支票?

ICheckAdd chkAddQuery = requestMsgSet.AppendCheckAddRq(); 
chkAddQuery.AccountRef.FullName.SetValue("1001 - Bank (Test Account)"); 
chkAddQuery.IsToBePrinted.SetValue(true); 
chkAddQuery.TxnDate.SetValue(DateTime.Now); 
chkAddQuery.PayeeEntityRef.FullName.SetValue("Test Employee"); 
IExpenseLineAdd expAdd = chkAddQuery.ExpenseLineAddList.Append(); 
expAdd.AccountRef.FullName.SetValue("1001 - Bank (Test Account)"); 
expAdd.Amount.SetValue(1500.00); 

但不知何故,這些都是在非工資的交易,而不是來自下在QuickBooks工資支票,所以需要我們如何可以創建幫助員工在快速支付工資支票?

+0

@William Lorfingü可以在這裏提供一些幫助 – Kapil

回答

相關問題