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

时间:2017-07-08 03:59:28

标签: quickbooks 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中创建员工薪酬支票?

1 个答案:

答案 0 :(得分:1)

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

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