我正在使用QB桌面版。我正在通过IDS在QB中创建库存/服务/其他充值/付款等所有项目,但我无法添加 - '销售税项目' throgh我的.net代码,因为
Intuit.Ipp.Data.Qbd.ItemTypeEnum - 仅具有Assembly / FixedAsset / Group / Inventory / Service / OtherCharge / Payment.Product / SubTotal。而不是销售税项目。
有没有其他方法可以创建销售税项?
请帮忙。
此致
Reshma D。
答案 0 :(得分:2)
您可以改为使用SalesTax
对象。
<?xml version="1.0" encoding="utf-16"?>
<Add xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" RequestId="26d2185e14e24563afe3ea451f70440b" xmlns="http://www.intuit.com/sb/cdm/v2">
<ExternalRealmId>132875294</ExternalRealmId>
<Object xsi:type="SalesTax">
<Name>All ST</Name>
<Desc>County supplemental tax</Desc>
<TaxRate>10</TaxRate>
<VendorName>Franchise Tax Board</VendorName>
</Object>
</Add>
文档为here。