0

QB デスクトップ版を使用しています。IDS を使用して QB で Inventory/Service/OtherCharge/Payment などのすべてのアイテムを作成していますが、.net コードを介して「Sales Tax Item」を追加することはできません。

Intuit.Ipp.Data.Qbd.ItemTypeEnum - Assembly/FixedAsset/Group/Inventory/Service/OtherCharge/Payment.Product/SubTotal のみを持つ。売上税アイテムではありません。

売上税項目を作成する他の方法はありますか?

助けてください。

よろしく、

レシュマ D.

4

1 に答える 1

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>

ドキュメントはこちらです。

于 2013-03-01T11:55:15.810 に答える