Quickbooks web API - 从quickbooks中提取数据

时间:2015-09-23 19:55:52

标签: php api quickbooks

我希望能够从我有权访问的现有在线QB设置中提取数据,特别是所有客户数据,这些数据是特定父帐户的子帐户。然后我想将数据添加到html表中。这是可能的,如果可以,我从哪里开始?感谢。

1 个答案:

答案 0 :(得分:3)

  

这可能吗

  

我从哪里开始?

如果我是你......我会从搜索开始。 StackOverflow上一遍又一遍地回答这个问题,谷歌的结果也很多。

但是......这是一个概述:

查看上述QuickBooks PHP开源代码的docs /目录。有很多查询QuickBooks Online数据的例子。具体来说,您可能需要一些看起来像这样的代码:

// Get the provided date and time
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Calendar providedDate  = Calendar.getInstance();
providedDate.setTime(df.parse(stringInstanceRepresentingDate));

// Get the current date and time
Calendar cal = Calendar.getInstance();

// Set time of calendar to 09:00
cal.set(Calendar.HOUR_OF_DAY, 9);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);

// Check if current time is after 09:00 today
boolean afterNine = providedDate.after(cal);

if (afterNine ) {
    System.out.println("You are late");
}
else {
    System.out.println("You are not late");
}