我们如何使用 qbfc 创建员工工资支票?

How we can create employee pay cheques using 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 中的工资支票,因此需要帮助我们如何在 quickbooks 中创建员工工资支票?

在 Intuit Developer Network 上跟进 William 之后,我发现 qbfc 不能用于生成员工工资支票

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