QB时间跟踪WebService

时间:2018-04-12 06:31:12

标签: quickbooks qbxml time-tracking

所以这是我为Quickbooks创建的xml节点。发送超过持续时间(其时间有点儿)

XmlElement duration2 = inputXmlDoc.CreateElement("Duration");
timeTrackingAdd2.AppendChild(duration2);
duration2.InnerText = "PT0H14M0S"

根据格式,我假设它应该将其转换为 在Quickbooks中0.14。但转换与我的假设不同

您可以在下面的图片中看到更改的值: 0.23 这是传输到QB的数据的图像。它将持续时间转换为0.23。这里的公式可能是什么?

多次尝试使用不同的值:

PT0H1M0S 1 converts to 0.02
PT0H10M0S 10 converts to 0.17
PT0H14M0S 14 converts to 0.23
PT0H30M0S 30 converts to 0.50

哪种方法可以帮助我将持续时间从我的Web应用程序转移到Quickbooks,将其转换为准确的持续时间?

1 个答案:

答案 0 :(得分:2)

根据您编辑的示例和the standard,它会将这些输入转换为十进制。

1 hour converts to 1, thus:
1 minute = 1/60 = 0.0166667 which rounds up to 0.02.
10 minutes = 10/60 = 0.166667 which rounds up to 0.17.
14 minutes = 14/60 = 0.23333 which rounds up to 0.23.
30 minutes = 30/60 = 0.50.