2013-03-01 2 views
0

QB 데스크톱 에디션을 사용하고 있습니다. IDS를 통해 QB에서 재고/서비스/OtherCharge/지불과 같은 모든 품목을 생성하고 있습니다 만,QuickBooks Desktop에 Sales Tax Item을 추가하는 방법은 무엇입니까?

Intuit.Ipp.Data.Qbd가 포함되어 있기 때문에 -'Sales Tax Item '을 추가 할 수 없습니다. ItemTypeEnum - Assembly/FixedAsset/Group/Inventory/Service/OtherCharge/Payment.Product/SubTotal 만 있습니다. 판매 세 품목이 아닙니다.

Sales Tax Item을 만드는 다른 방법이 있습니까?

도와주세요.

감사합니다,

Reshma D.

답변

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입니다.

관련 문제