我们如何使用 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);

但不知何故,这些属于非工资单交易,而不是快速簿中的工资支票,因此需要帮助了解如何在快速簿中创建员工工资支票?

在Intuit开发者网络上跟进William后,我发现QBFC不能用于生成员工工资支票

https://help.developer.intuit.com/s/question/0D50f00004sugPACAY/how-we-can-create-employee-pay-cheques-using-qbfc

最新更新