This is a general query to search through all the items, of every type, in contrast to the type-specific queries such as ItemInventoryQuery, ItemOtherChargeQuery, and so forth. ItemQuery will return information about all the items that are set up in the QuickBooks file. However, if you want to find out if an inventory item has had its on hand quantity modified by other QB transactions (such as ItemReceipt), then you cannot use this query! You must use the ItemInventoryQuery instead. Notice that you cannot get an inventory asset value from QuickBooks using this query. Instead, you need to use the General Summary Report query (which currently doesn’t include Assembly Items). Suppose you needed a way to search for the amount on hand of items that have had their amount changed since a certain date. Again, you would not use this query, but a GeneralDetailReportQuery that has its GeneralDetailReportType set to “InventoryValuationDetail.” This will tell you which items changed by how much. Finally, suppose you wanted the on-hand quantity from QB as of a specific date. You would use a General Summary Report of the type Inventory Valuation Summary. (Again, this report doesn’t include Inventory Assemblies.)
Request
Response
XMLOps
VB.NET
C#
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 | <?xml version="1.0" encoding="utf-8"?> <?qbxml version="16.0"?> <QBXML> <QBXMLMsgsRq onError="stopOnError"> <ItemQueryRq metaData="ENUMTYPE" iterator="ENUMTYPE" iteratorID="UUIDTYPE"> <!-- BEGIN OR --> <ListID >IDTYPE</ListID> <!-- optional, may repeat --> <!-- OR --> <FullName >STRTYPE</FullName> <!-- optional, may repeat --> <!-- OR --> <MaxReturned >INTTYPE</MaxReturned> <!-- optional --> <!-- ActiveStatus may have one of the following values: ActiveOnly [DEFAULT], InactiveOnly, All --> <ActiveStatus >ENUMTYPE</ActiveStatus> <!-- optional --> <FromModifiedDate >DATETIMETYPE</FromModifiedDate> <!-- optional --> <ToModifiedDate >DATETIMETYPE</ToModifiedDate> <!-- optional --> <!-- BEGIN OR --> <NameFilter> <!-- optional --> <!-- MatchCriterion may have one of the following values: StartsWith, Contains, EndsWith --> <MatchCriterion >ENUMTYPE</MatchCriterion> <!-- required --> <Name >STRTYPE</Name> <!-- required --> </NameFilter> <!-- OR --> <NameRangeFilter> <!-- optional --> <FromName >STRTYPE</FromName> <!-- optional --> <ToName >STRTYPE</ToName> <!-- optional --> </NameRangeFilter> <!-- END OR --> <!-- END OR --> <IncludeRetElement >STRTYPE</IncludeRetElement> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional, may repeat --> </ItemQueryRq> <ItemQueryRs statusCode="INTTYPE" statusSeverity="STRTYPE" statusMessage="STRTYPE" retCount="INTTYPE" iteratorRemainingCount="INTTYPE" iteratorID="UUIDTYPE"> <!-- BEGIN OR --> <ItemServiceRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <FullName >STRTYPE</FullName> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ParentRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ParentRef> <Sublevel >INTTYPE</Sublevel> <!-- required --> <UnitOfMeasureSetRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </UnitOfMeasureSetRef> <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional --> <SalesTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </SalesTaxCodeRef> <!-- BEGIN OR --> <SalesOrPurchase> <!-- optional --> <Desc >STRTYPE</Desc> <!-- optional --> <!-- BEGIN OR --> <Price >PRICETYPE</Price> <!-- optional --> <!-- OR --> <PricePercent >PERCENTTYPE</PricePercent> <!-- optional --> <!-- END OR --> <AccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </AccountRef> </SalesOrPurchase> <!-- OR --> <SalesAndPurchase> <!-- optional --> <SalesDesc >STRTYPE</SalesDesc> <!-- optional --> <SalesPrice >PRICETYPE</SalesPrice> <!-- optional --> <IncomeAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </IncomeAccountRef> <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional --> <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional --> <PurchaseTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PurchaseTaxCodeRef> <ExpenseAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ExpenseAccountRef> <PrefVendorRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PrefVendorRef> </SalesAndPurchase> <!-- END OR --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemServiceRet> <!-- OR --> <ItemNonInventoryRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <FullName >STRTYPE</FullName> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ParentRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ParentRef> <Sublevel >INTTYPE</Sublevel> <!-- required --> <ManufacturerPartNumber >STRTYPE</ManufacturerPartNumber> <!-- optional --> <UnitOfMeasureSetRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </UnitOfMeasureSetRef> <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional --> <SalesTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </SalesTaxCodeRef> <!-- BEGIN OR --> <SalesOrPurchase> <!-- optional --> <Desc >STRTYPE</Desc> <!-- optional --> <!-- BEGIN OR --> <Price >PRICETYPE</Price> <!-- optional --> <!-- OR --> <PricePercent >PERCENTTYPE</PricePercent> <!-- optional --> <!-- END OR --> <AccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </AccountRef> </SalesOrPurchase> <!-- OR --> <SalesAndPurchase> <!-- optional --> <SalesDesc >STRTYPE</SalesDesc> <!-- optional --> <SalesPrice >PRICETYPE</SalesPrice> <!-- optional --> <IncomeAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </IncomeAccountRef> <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional --> <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional --> <PurchaseTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PurchaseTaxCodeRef> <ExpenseAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ExpenseAccountRef> <PrefVendorRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PrefVendorRef> </SalesAndPurchase> <!-- END OR --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemNonInventoryRet> <!-- OR --> <ItemOtherChargeRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <FullName >STRTYPE</FullName> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ParentRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ParentRef> <Sublevel >INTTYPE</Sublevel> <!-- required --> <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional --> <SalesTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </SalesTaxCodeRef> <!-- BEGIN OR --> <SalesOrPurchase> <!-- optional --> <Desc >STRTYPE</Desc> <!-- optional --> <!-- BEGIN OR --> <Price >PRICETYPE</Price> <!-- optional --> <!-- OR --> <PricePercent >PERCENTTYPE</PricePercent> <!-- optional --> <!-- END OR --> <AccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </AccountRef> </SalesOrPurchase> <!-- OR --> <SalesAndPurchase> <!-- optional --> <SalesDesc >STRTYPE</SalesDesc> <!-- optional --> <SalesPrice >PRICETYPE</SalesPrice> <!-- optional --> <IncomeAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </IncomeAccountRef> <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional --> <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional --> <PurchaseTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PurchaseTaxCodeRef> <ExpenseAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ExpenseAccountRef> <PrefVendorRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PrefVendorRef> </SalesAndPurchase> <!-- END OR --> <!-- SpecialItemType may have one of the following values: FinanceCharge, ReimbursableExpenseGroup, ReimbursableExpenseSubtotal --> <SpecialItemType >ENUMTYPE</SpecialItemType> <!-- optional --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemOtherChargeRet> <!-- OR --> <ItemInventoryRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <FullName >STRTYPE</FullName> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ParentRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ParentRef> <Sublevel >INTTYPE</Sublevel> <!-- required --> <ManufacturerPartNumber >STRTYPE</ManufacturerPartNumber> <!-- optional --> <UnitOfMeasureSetRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </UnitOfMeasureSetRef> <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional --> <SalesTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </SalesTaxCodeRef> <SalesDesc >STRTYPE</SalesDesc> <!-- optional --> <SalesPrice >PRICETYPE</SalesPrice> <!-- optional --> <IncomeAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </IncomeAccountRef> <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional --> <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional --> <PurchaseTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PurchaseTaxCodeRef> <COGSAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </COGSAccountRef> <PrefVendorRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PrefVendorRef> <AssetAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </AssetAccountRef> <ReorderPoint >QUANTYPE</ReorderPoint> <!-- optional --> <Max >QUANTYPE</Max> <!-- optional --> <QuantityOnHand >QUANTYPE</QuantityOnHand> <!-- optional --> <AverageCost >PRICETYPE</AverageCost> <!-- optional --> <QuantityOnOrder >QUANTYPE</QuantityOnOrder> <!-- optional --> <QuantityOnSalesOrder >QUANTYPE</QuantityOnSalesOrder> <!-- optional --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemInventoryRet> <!-- OR --> <ItemInventoryAssemblyRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <FullName >STRTYPE</FullName> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ParentRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ParentRef> <Sublevel >INTTYPE</Sublevel> <!-- required --> <ManufacturerPartNumber >STRTYPE</ManufacturerPartNumber> <!-- optional --> <UnitOfMeasureSetRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </UnitOfMeasureSetRef> <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional --> <SalesTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </SalesTaxCodeRef> <SalesDesc >STRTYPE</SalesDesc> <!-- optional --> <SalesPrice >PRICETYPE</SalesPrice> <!-- optional --> <IncomeAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </IncomeAccountRef> <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional --> <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional --> <PurchaseTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PurchaseTaxCodeRef> <COGSAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </COGSAccountRef> <PrefVendorRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PrefVendorRef> <AssetAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </AssetAccountRef> <BuildPoint >QUANTYPE</BuildPoint> <!-- optional --> <Max >QUANTYPE</Max> <!-- optional --> <QuantityOnHand >QUANTYPE</QuantityOnHand> <!-- optional --> <AverageCost >PRICETYPE</AverageCost> <!-- optional --> <QuantityOnOrder >QUANTYPE</QuantityOnOrder> <!-- optional --> <QuantityOnSalesOrder >QUANTYPE</QuantityOnSalesOrder> <!-- optional --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <ItemInventoryAssemblyLine> <!-- optional, may repeat --> <ItemInventoryRef> <!-- required --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ItemInventoryRef> <Quantity >QUANTYPE</Quantity> <!-- optional --> </ItemInventoryAssemblyLine> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemInventoryAssemblyRet> <!-- OR --> <ItemFixedAssetRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <!-- AcquiredAs may have one of the following values: New, Old --> <AcquiredAs >ENUMTYPE</AcquiredAs> <!-- required --> <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- required --> <PurchaseDate >DATETYPE</PurchaseDate> <!-- required --> <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional --> <VendorOrPayeeName >STRTYPE</VendorOrPayeeName> <!-- optional --> <AssetAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </AssetAccountRef> <FixedAssetSalesInfo> <!-- optional --> <SalesDesc >STRTYPE</SalesDesc> <!-- required --> <SalesDate >DATETYPE</SalesDate> <!-- required --> <SalesPrice >PRICETYPE</SalesPrice> <!-- optional --> <SalesExpense >PRICETYPE</SalesExpense> <!-- optional --> </FixedAssetSalesInfo> <AssetDesc >STRTYPE</AssetDesc> <!-- optional --> <Location >STRTYPE</Location> <!-- optional --> <PONumber >STRTYPE</PONumber> <!-- optional --> <SerialNumber >STRTYPE</SerialNumber> <!-- optional --> <WarrantyExpDate >DATETYPE</WarrantyExpDate> <!-- optional --> <Notes >STRTYPE</Notes> <!-- optional --> <AssetNumber >STRTYPE</AssetNumber> <!-- optional --> <CostBasis >AMTTYPE</CostBasis> <!-- optional --> <YearEndAccumulatedDepreciation >AMTTYPE</YearEndAccumulatedDepreciation> <!-- optional --> <YearEndBookValue >AMTTYPE</YearEndBookValue> <!-- optional --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemFixedAssetRet> <!-- OR --> <ItemSubtotalRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ItemDesc >STRTYPE</ItemDesc> <!-- optional --> <!-- SpecialItemType may have one of the following values: FinanceCharge, ReimbursableExpenseGroup, ReimbursableExpenseSubtotal --> <SpecialItemType >ENUMTYPE</SpecialItemType> <!-- optional --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemSubtotalRet> <!-- OR --> <ItemDiscountRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <FullName >STRTYPE</FullName> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ParentRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ParentRef> <Sublevel >INTTYPE</Sublevel> <!-- required --> <ItemDesc >STRTYPE</ItemDesc> <!-- optional --> <SalesTaxCodeRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </SalesTaxCodeRef> <!-- BEGIN OR --> <DiscountRate >PRICETYPE</DiscountRate> <!-- optional --> <!-- OR --> <DiscountRatePercent >PERCENTTYPE</DiscountRatePercent> <!-- optional --> <!-- END OR --> <AccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </AccountRef> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemDiscountRet> <!-- OR --> <ItemPaymentRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ItemDesc >STRTYPE</ItemDesc> <!-- optional --> <DepositToAccountRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </DepositToAccountRef> <PaymentMethodRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </PaymentMethodRef> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemPaymentRet> <!-- OR --> <ItemSalesTaxRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ClassRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ClassRef> <ItemDesc >STRTYPE</ItemDesc> <!-- optional --> <TaxRate >PERCENTTYPE</TaxRate> <!-- optional --> <TaxVendorRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </TaxVendorRef> <SalesTaxReturnLineRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </SalesTaxReturnLineRef> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemSalesTaxRet> <!-- OR --> <ItemSalesTaxGroupRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ItemDesc >STRTYPE</ItemDesc> <!-- optional --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <ItemSalesTaxRef> <!-- optional, may repeat --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ItemSalesTaxRef> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemSalesTaxGroupRet> <!-- OR --> <ItemGroupRet> <!-- optional --> <ListID >IDTYPE</ListID> <!-- required --> <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required --> <TimeModified >DATETIMETYPE</TimeModified> <!-- required --> <EditSequence >STRTYPE</EditSequence> <!-- required --> <Name >STRTYPE</Name> <!-- required --> <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional --> <IsActive >BOOLTYPE</IsActive> <!-- optional --> <ItemDesc >STRTYPE</ItemDesc> <!-- optional --> <UnitOfMeasureSetRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </UnitOfMeasureSetRef> <IsPrintItemsInGroup >BOOLTYPE</IsPrintItemsInGroup> <!-- optional --> <!-- SpecialItemType may have one of the following values: FinanceCharge, ReimbursableExpenseGroup, ReimbursableExpenseSubtotal --> <SpecialItemType >ENUMTYPE</SpecialItemType> <!-- optional --> <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional --> <ItemGroupLine> <!-- optional, may repeat --> <ItemRef> <!-- optional --> <ListID >IDTYPE</ListID> <!-- optional --> <FullName >STRTYPE</FullName> <!-- optional --> </ItemRef> <Quantity >QUANTYPE</Quantity> <!-- optional --> <UnitOfMeasure >STRTYPE</UnitOfMeasure> <!-- optional --> </ItemGroupLine> <DataExtRet> <!-- optional, may repeat --> <OwnerID >GUIDTYPE</OwnerID> <!-- optional --> <DataExtName >STRTYPE</DataExtName> <!-- required --> <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE --> <DataExtType >ENUMTYPE</DataExtType> <!-- required --> <DataExtValue >STRTYPE</DataExtValue> <!-- required --> </DataExtRet> </ItemGroupRet> <!-- END OR --> </ItemQueryRs> </QBXMLMsgsRq> </QBXML> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 | 'The following sample code is generated as an illustration of 'Creating requests and parsing responses ONLY 'This code is NOT intended to show best practices or ideal code 'Use at your most careful discretion imports System imports System.Net imports System.Drawing imports System.Collections imports System.ComponentModel imports System.Windows.Forms imports System.Data imports System.IO imports Interop.QBFC16 Module com.intuit.idn.samples Public Class Sample Public Sub DoItemQuery() Dim sessionBegun as Boolean sessionBegun = False Dim connectionOpen as Boolean connectionOpen = False Dim sessionManager as QBSessionManager sessionManager = nothing Try 'Create the session Manager object sessionManager = new QBSessionManager 'Create the message set request object to hold our request Dim requestMsgSet as IMsgSetRequest requestMsgSet = sessionManager.CreateMsgSetRequest("US",16,0) requestMsgSet.Attributes.OnError = ENRqOnError.roeContinue BuildItemQueryRq(requestMsgSet) 'Connect to QuickBooks and begin a session sessionManager.OpenConnection("","Sample Code from OSR") connectionOpen = True sessionManager.BeginSession("", ENOpenMode.omDontCare) sessionBegun = True 'Send the request and get the response from QuickBooks Dim responseMsgSet as IMsgSetResponse responseMsgSet = sessionManager.DoRequests(requestMsgSet) 'End the session and close the connection to QuickBooks sessionManager.EndSession() sessionBegun = False sessionManager.CloseConnection() connectionOpen = False WalkItemQueryRs(responseMsgSet) Catch e as Exception MessageBox.Show(e.Message, "Error") if (sessionBegun) then sessionManager.EndSession() End If if (connectionOpen) then sessionManager.CloseConnection() End If End Try End Sub Public Sub BuildItemQueryRq(requestMsgSet as IMsgSetRequest) Dim ItemQueryRq as IItemQuery ItemQueryRq= requestMsgSet.AppendItemQueryRq() Dim ORListQueryElementType14423 as String ORListQueryElementType14423 = "ListIDList" if (ORListQueryElementType14423 == "ListIDList") then 'Set field value for ListIDList 'May create more than one of these if needed ItemQueryRq.ORListQuery.ListIDList.Add("200000-1011023419") End If if (ORListQueryElementType14423 == "FullNameList") then 'Set field value for FullNameList 'May create more than one of these if needed ItemQueryRq.ORListQuery.FullNameList.Add("ab") End If if (ORListQueryElementType14423 == "ListFilter") then 'Set field value for MaxReturned ItemQueryRq.ORListQuery.ListFilter.MaxReturned.SetValue(6) 'Set field value for ActiveStatus ItemQueryRq.ORListQuery.ListFilter.ActiveStatus.SetValue(ENActiveStatus.asActiveOnly [DEFAULT]) 'Set field value for FromModifiedDate ItemQueryRq.ORListQuery.ListFilter.FromModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false) 'Set field value for ToModifiedDate ItemQueryRq.ORListQuery.ListFilter.ToModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false) Dim ORNameFilterElementType14424 as String ORNameFilterElementType14424 = "NameFilter" if (ORNameFilterElementType14424 == "NameFilter") then 'Set field value for MatchCriterion ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.MatchCriterion.SetValue(ENMatchCriterion.mcStartsWith) 'Set field value for Name ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.Name.SetValue("ab") End If if (ORNameFilterElementType14424 == "NameRangeFilter") then 'Set field value for FromName ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.FromName.SetValue("ab") 'Set field value for ToName ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.ToName.SetValue("ab") End If End If 'Set field value for IncludeRetElementList 'May create more than one of these if needed ItemQueryRq.IncludeRetElementList.Add("ab") 'Set field value for OwnerIDList 'May create more than one of these if needed ItemQueryRq.OwnerIDList.Add(System.Guid.NewGuid().ToString()) End Sub Public Sub WalkItemQueryRs( responseMsgSet as IMsgSetResponse) if (responseMsgSet is nothing) then Exit Sub End If Dim responseList as IResponseList responseList = responseMsgSet.ResponseList if (responseList is nothing) then Exit Sub End If 'if we sent only one request, there is only one response, we'll walk the list for this sample for j=0 to responseList.Count-1 Dim response as IResponse response = responseList.GetAt(j) 'check the status code of the response, 0=ok, >0 is warning if (response.StatusCode >= 0) then 'the request-specific response is in the details, make sure we have some if (not response.Detail is nothing) then 'make sure the response is the type we're expecting Dim responseType as ENResponseType responseType = CType(response.Type.GetValue(),ENResponseType) if (responseType == ENResponseType.rtItemQueryRs) then 'upcast to more specific type here, this is safe because we checked with response.Type check above Dim OR as IORItemRetList OR = CType(response.Detail,IORItemRetList) WalkOR(OR) End If End If End If Next j End Sub Public Sub WalkOR(OR as IORItemRetList) if (OR is nothing) then Exit Sub End If 'Go through all the elements of IORItemRetList if (not OR.ItemServiceRet. is nothing) then 'Get value of ListID Dim ListID14425 as String ListID14425 = OR.ItemServiceRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14426 as DateTime TimeCreated14426 = OR.ItemServiceRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14427 as DateTime TimeModified14427 = OR.ItemServiceRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14428 as String EditSequence14428 = OR.ItemServiceRet.EditSequence.GetValue() 'Get value of Name Dim Name14429 as String Name14429 = OR.ItemServiceRet.Name.GetValue() 'Get value of FullName Dim FullName14430 as String FullName14430 = OR.ItemServiceRet.FullName.GetValue() 'Get value of BarCodeValue if ( not OR.ItemServiceRet.BarCodeValue is nothing) then Dim BarCodeValue14431 as String BarCodeValue14431 = OR.ItemServiceRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemServiceRet.IsActive is nothing) then Dim IsActive14432 as Boolean IsActive14432 = OR.ItemServiceRet.IsActive.GetValue() End If if (not OR.ItemServiceRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.ClassRef.ListID is nothing) then Dim ListID14433 as String ListID14433 = OR.ItemServiceRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.ClassRef.FullName is nothing) then Dim FullName14434 as String FullName14434 = OR.ItemServiceRet.ClassRef.FullName.GetValue() End If End If if (not OR.ItemServiceRet.ParentRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.ParentRef.ListID is nothing) then Dim ListID14435 as String ListID14435 = OR.ItemServiceRet.ParentRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.ParentRef.FullName is nothing) then Dim FullName14436 as String FullName14436 = OR.ItemServiceRet.ParentRef.FullName.GetValue() End If End If 'Get value of Sublevel Dim Sublevel14437 as Integer Sublevel14437 = OR.ItemServiceRet.Sublevel.GetValue() if (not OR.ItemServiceRet.UnitOfMeasureSetRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.UnitOfMeasureSetRef.ListID is nothing) then Dim ListID14438 as String ListID14438 = OR.ItemServiceRet.UnitOfMeasureSetRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.UnitOfMeasureSetRef.FullName is nothing) then Dim FullName14439 as String FullName14439 = OR.ItemServiceRet.UnitOfMeasureSetRef.FullName.GetValue() End If End If 'Get value of IsTaxIncluded if ( not OR.ItemServiceRet.IsTaxIncluded is nothing) then Dim IsTaxIncluded14440 as Boolean IsTaxIncluded14440 = OR.ItemServiceRet.IsTaxIncluded.GetValue() End If if (not OR.ItemServiceRet.SalesTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.SalesTaxCodeRef.ListID is nothing) then Dim ListID14441 as String ListID14441 = OR.ItemServiceRet.SalesTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.SalesTaxCodeRef.FullName is nothing) then Dim FullName14442 as String FullName14442 = OR.ItemServiceRet.SalesTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemServiceRet.ORSalesPurchase is nothing) then if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase is nothing) then if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase. is nothing) then 'Get value of Desc if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc is nothing) then Dim Desc14444 as String Desc14444 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue() End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice is nothing) then if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then 'Get value of Price if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then Dim Price14446 as Double Price14446 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue() End If End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then 'Get value of PricePercent if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then Dim PricePercent14447 as Double PricePercent14447 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue() End If End If End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID is nothing) then Dim ListID14448 as String ListID14448 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName is nothing) then Dim FullName14449 as String FullName14449 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue() End If End If End If End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase is nothing) then if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase. is nothing) then 'Get value of SalesDesc if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc is nothing) then Dim SalesDesc14450 as String SalesDesc14450 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue() End If 'Get value of SalesPrice if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice is nothing) then Dim SalesPrice14451 as Double SalesPrice14451 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue() End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID is nothing) then Dim ListID14452 as String ListID14452 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName is nothing) then Dim FullName14453 as String FullName14453 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue() End If End If 'Get value of PurchaseDesc if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc is nothing) then Dim PurchaseDesc14454 as String PurchaseDesc14454 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue() End If 'Get value of PurchaseCost if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost is nothing) then Dim PurchaseCost14455 as Double PurchaseCost14455 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue() End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID is nothing) then Dim ListID14456 as String ListID14456 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName is nothing) then Dim FullName14457 as String FullName14457 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID is nothing) then Dim ListID14458 as String ListID14458 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName is nothing) then Dim FullName14459 as String FullName14459 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue() End If End If if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef. is nothing) then 'Get value of ListID if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID is nothing) then Dim ListID14460 as String ListID14460 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName is nothing) then Dim FullName14461 as String FullName14461 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue() End If End If End If End If End If 'Get value of ExternalGUID if ( not OR.ItemServiceRet.ExternalGUID is nothing) then Dim ExternalGUID14462 as String ExternalGUID14462 = OR.ItemServiceRet.ExternalGUID.GetValue() End If if (not OR.ItemServiceRet.DataExtRetList is nothing) Dim i14463 as Integer for i14463 = 0 to OR.ItemServiceRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemServiceRet.DataExtRetList.GetAt(i14463) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14464 as String OwnerID14464 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14465 as String DataExtName14465 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14466 as ENDataExtType DataExtType14466 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14467 as String DataExtValue14467 = DataExtRetDataExtValue.GetValue() Next i14463 End If End If if (not OR.ItemNonInventoryRet. is nothing) then 'Get value of ListID Dim ListID14468 as String ListID14468 = OR.ItemNonInventoryRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14469 as DateTime TimeCreated14469 = OR.ItemNonInventoryRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14470 as DateTime TimeModified14470 = OR.ItemNonInventoryRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14471 as String EditSequence14471 = OR.ItemNonInventoryRet.EditSequence.GetValue() 'Get value of Name Dim Name14472 as String Name14472 = OR.ItemNonInventoryRet.Name.GetValue() 'Get value of FullName Dim FullName14473 as String FullName14473 = OR.ItemNonInventoryRet.FullName.GetValue() 'Get value of BarCodeValue if ( not OR.ItemNonInventoryRet.BarCodeValue is nothing) then Dim BarCodeValue14474 as String BarCodeValue14474 = OR.ItemNonInventoryRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemNonInventoryRet.IsActive is nothing) then Dim IsActive14475 as Boolean IsActive14475 = OR.ItemNonInventoryRet.IsActive.GetValue() End If if (not OR.ItemNonInventoryRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.ClassRef.ListID is nothing) then Dim ListID14476 as String ListID14476 = OR.ItemNonInventoryRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.ClassRef.FullName is nothing) then Dim FullName14477 as String FullName14477 = OR.ItemNonInventoryRet.ClassRef.FullName.GetValue() End If End If if (not OR.ItemNonInventoryRet.ParentRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.ParentRef.ListID is nothing) then Dim ListID14478 as String ListID14478 = OR.ItemNonInventoryRet.ParentRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.ParentRef.FullName is nothing) then Dim FullName14479 as String FullName14479 = OR.ItemNonInventoryRet.ParentRef.FullName.GetValue() End If End If 'Get value of Sublevel Dim Sublevel14480 as Integer Sublevel14480 = OR.ItemNonInventoryRet.Sublevel.GetValue() 'Get value of ManufacturerPartNumber if ( not OR.ItemNonInventoryRet.ManufacturerPartNumber is nothing) then Dim ManufacturerPartNumber14481 as String ManufacturerPartNumber14481 = OR.ItemNonInventoryRet.ManufacturerPartNumber.GetValue() End If if (not OR.ItemNonInventoryRet.UnitOfMeasureSetRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID is nothing) then Dim ListID14482 as String ListID14482 = OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName is nothing) then Dim FullName14483 as String FullName14483 = OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName.GetValue() End If End If 'Get value of IsTaxIncluded if ( not OR.ItemNonInventoryRet.IsTaxIncluded is nothing) then Dim IsTaxIncluded14484 as Boolean IsTaxIncluded14484 = OR.ItemNonInventoryRet.IsTaxIncluded.GetValue() End If if (not OR.ItemNonInventoryRet.SalesTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID is nothing) then Dim ListID14485 as String ListID14485 = OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName is nothing) then Dim FullName14486 as String FullName14486 = OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemNonInventoryRet.ORSalesPurchase is nothing) then if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase is nothing) then if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase. is nothing) then 'Get value of Desc if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc is nothing) then Dim Desc14488 as String Desc14488 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue() End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice is nothing) then if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then 'Get value of Price if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then Dim Price14490 as Double Price14490 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue() End If End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then 'Get value of PricePercent if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then Dim PricePercent14491 as Double PricePercent14491 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue() End If End If End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID is nothing) then Dim ListID14492 as String ListID14492 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName is nothing) then Dim FullName14493 as String FullName14493 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue() End If End If End If End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase is nothing) then if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase. is nothing) then 'Get value of SalesDesc if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc is nothing) then Dim SalesDesc14494 as String SalesDesc14494 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue() End If 'Get value of SalesPrice if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice is nothing) then Dim SalesPrice14495 as Double SalesPrice14495 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue() End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID is nothing) then Dim ListID14496 as String ListID14496 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName is nothing) then Dim FullName14497 as String FullName14497 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue() End If End If 'Get value of PurchaseDesc if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc is nothing) then Dim PurchaseDesc14498 as String PurchaseDesc14498 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue() End If 'Get value of PurchaseCost if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost is nothing) then Dim PurchaseCost14499 as Double PurchaseCost14499 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue() End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID is nothing) then Dim ListID14500 as String ListID14500 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName is nothing) then Dim FullName14501 as String FullName14501 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID is nothing) then Dim ListID14502 as String ListID14502 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName is nothing) then Dim FullName14503 as String FullName14503 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue() End If End If if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef. is nothing) then 'Get value of ListID if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID is nothing) then Dim ListID14504 as String ListID14504 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName is nothing) then Dim FullName14505 as String FullName14505 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue() End If End If End If End If End If 'Get value of ExternalGUID if ( not OR.ItemNonInventoryRet.ExternalGUID is nothing) then Dim ExternalGUID14506 as String ExternalGUID14506 = OR.ItemNonInventoryRet.ExternalGUID.GetValue() End If if (not OR.ItemNonInventoryRet.DataExtRetList is nothing) Dim i14507 as Integer for i14507 = 0 to OR.ItemNonInventoryRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemNonInventoryRet.DataExtRetList.GetAt(i14507) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14508 as String OwnerID14508 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14509 as String DataExtName14509 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14510 as ENDataExtType DataExtType14510 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14511 as String DataExtValue14511 = DataExtRetDataExtValue.GetValue() Next i14507 End If End If if (not OR.ItemOtherChargeRet. is nothing) then 'Get value of ListID Dim ListID14512 as String ListID14512 = OR.ItemOtherChargeRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14513 as DateTime TimeCreated14513 = OR.ItemOtherChargeRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14514 as DateTime TimeModified14514 = OR.ItemOtherChargeRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14515 as String EditSequence14515 = OR.ItemOtherChargeRet.EditSequence.GetValue() 'Get value of Name Dim Name14516 as String Name14516 = OR.ItemOtherChargeRet.Name.GetValue() 'Get value of FullName Dim FullName14517 as String FullName14517 = OR.ItemOtherChargeRet.FullName.GetValue() 'Get value of BarCodeValue if ( not OR.ItemOtherChargeRet.BarCodeValue is nothing) then Dim BarCodeValue14518 as String BarCodeValue14518 = OR.ItemOtherChargeRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemOtherChargeRet.IsActive is nothing) then Dim IsActive14519 as Boolean IsActive14519 = OR.ItemOtherChargeRet.IsActive.GetValue() End If if (not OR.ItemOtherChargeRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.ClassRef.ListID is nothing) then Dim ListID14520 as String ListID14520 = OR.ItemOtherChargeRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.ClassRef.FullName is nothing) then Dim FullName14521 as String FullName14521 = OR.ItemOtherChargeRet.ClassRef.FullName.GetValue() End If End If if (not OR.ItemOtherChargeRet.ParentRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.ParentRef.ListID is nothing) then Dim ListID14522 as String ListID14522 = OR.ItemOtherChargeRet.ParentRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.ParentRef.FullName is nothing) then Dim FullName14523 as String FullName14523 = OR.ItemOtherChargeRet.ParentRef.FullName.GetValue() End If End If 'Get value of Sublevel Dim Sublevel14524 as Integer Sublevel14524 = OR.ItemOtherChargeRet.Sublevel.GetValue() 'Get value of IsTaxIncluded if ( not OR.ItemOtherChargeRet.IsTaxIncluded is nothing) then Dim IsTaxIncluded14525 as Boolean IsTaxIncluded14525 = OR.ItemOtherChargeRet.IsTaxIncluded.GetValue() End If if (not OR.ItemOtherChargeRet.SalesTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID is nothing) then Dim ListID14526 as String ListID14526 = OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName is nothing) then Dim FullName14527 as String FullName14527 = OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemOtherChargeRet.ORSalesPurchase is nothing) then if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase is nothing) then if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase. is nothing) then 'Get value of Desc if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc is nothing) then Dim Desc14529 as String Desc14529 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue() End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice is nothing) then if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then 'Get value of Price if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then Dim Price14531 as Double Price14531 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue() End If End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then 'Get value of PricePercent if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then Dim PricePercent14532 as Double PricePercent14532 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue() End If End If End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID is nothing) then Dim ListID14533 as String ListID14533 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName is nothing) then Dim FullName14534 as String FullName14534 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue() End If End If End If End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase is nothing) then if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase. is nothing) then 'Get value of SalesDesc if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc is nothing) then Dim SalesDesc14535 as String SalesDesc14535 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue() End If 'Get value of SalesPrice if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice is nothing) then Dim SalesPrice14536 as Double SalesPrice14536 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue() End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID is nothing) then Dim ListID14537 as String ListID14537 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName is nothing) then Dim FullName14538 as String FullName14538 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue() End If End If 'Get value of PurchaseDesc if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc is nothing) then Dim PurchaseDesc14539 as String PurchaseDesc14539 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue() End If 'Get value of PurchaseCost if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost is nothing) then Dim PurchaseCost14540 as Double PurchaseCost14540 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue() End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID is nothing) then Dim ListID14541 as String ListID14541 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName is nothing) then Dim FullName14542 as String FullName14542 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID is nothing) then Dim ListID14543 as String ListID14543 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName is nothing) then Dim FullName14544 as String FullName14544 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue() End If End If if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef. is nothing) then 'Get value of ListID if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID is nothing) then Dim ListID14545 as String ListID14545 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName is nothing) then Dim FullName14546 as String FullName14546 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue() End If End If End If End If End If 'Get value of SpecialItemType if ( not OR.ItemOtherChargeRet.SpecialItemType is nothing) then Dim SpecialItemType14547 as ENSpecialItemType SpecialItemType14547 = OR.ItemOtherChargeRet.SpecialItemType.GetValue() End If 'Get value of ExternalGUID if ( not OR.ItemOtherChargeRet.ExternalGUID is nothing) then Dim ExternalGUID14548 as String ExternalGUID14548 = OR.ItemOtherChargeRet.ExternalGUID.GetValue() End If if (not OR.ItemOtherChargeRet.DataExtRetList is nothing) Dim i14549 as Integer for i14549 = 0 to OR.ItemOtherChargeRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemOtherChargeRet.DataExtRetList.GetAt(i14549) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14550 as String OwnerID14550 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14551 as String DataExtName14551 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14552 as ENDataExtType DataExtType14552 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14553 as String DataExtValue14553 = DataExtRetDataExtValue.GetValue() Next i14549 End If End If if (not OR.ItemInventoryRet. is nothing) then 'Get value of ListID Dim ListID14554 as String ListID14554 = OR.ItemInventoryRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14555 as DateTime TimeCreated14555 = OR.ItemInventoryRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14556 as DateTime TimeModified14556 = OR.ItemInventoryRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14557 as String EditSequence14557 = OR.ItemInventoryRet.EditSequence.GetValue() 'Get value of Name Dim Name14558 as String Name14558 = OR.ItemInventoryRet.Name.GetValue() 'Get value of FullName Dim FullName14559 as String FullName14559 = OR.ItemInventoryRet.FullName.GetValue() 'Get value of BarCodeValue if ( not OR.ItemInventoryRet.BarCodeValue is nothing) then Dim BarCodeValue14560 as String BarCodeValue14560 = OR.ItemInventoryRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemInventoryRet.IsActive is nothing) then Dim IsActive14561 as Boolean IsActive14561 = OR.ItemInventoryRet.IsActive.GetValue() End If if (not OR.ItemInventoryRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.ClassRef.ListID is nothing) then Dim ListID14562 as String ListID14562 = OR.ItemInventoryRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.ClassRef.FullName is nothing) then Dim FullName14563 as String FullName14563 = OR.ItemInventoryRet.ClassRef.FullName.GetValue() End If End If if (not OR.ItemInventoryRet.ParentRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.ParentRef.ListID is nothing) then Dim ListID14564 as String ListID14564 = OR.ItemInventoryRet.ParentRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.ParentRef.FullName is nothing) then Dim FullName14565 as String FullName14565 = OR.ItemInventoryRet.ParentRef.FullName.GetValue() End If End If 'Get value of Sublevel Dim Sublevel14566 as Integer Sublevel14566 = OR.ItemInventoryRet.Sublevel.GetValue() 'Get value of ManufacturerPartNumber if ( not OR.ItemInventoryRet.ManufacturerPartNumber is nothing) then Dim ManufacturerPartNumber14567 as String ManufacturerPartNumber14567 = OR.ItemInventoryRet.ManufacturerPartNumber.GetValue() End If if (not OR.ItemInventoryRet.UnitOfMeasureSetRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID is nothing) then Dim ListID14568 as String ListID14568 = OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName is nothing) then Dim FullName14569 as String FullName14569 = OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName.GetValue() End If End If 'Get value of IsTaxIncluded if ( not OR.ItemInventoryRet.IsTaxIncluded is nothing) then Dim IsTaxIncluded14570 as Boolean IsTaxIncluded14570 = OR.ItemInventoryRet.IsTaxIncluded.GetValue() End If if (not OR.ItemInventoryRet.SalesTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.SalesTaxCodeRef.ListID is nothing) then Dim ListID14571 as String ListID14571 = OR.ItemInventoryRet.SalesTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.SalesTaxCodeRef.FullName is nothing) then Dim FullName14572 as String FullName14572 = OR.ItemInventoryRet.SalesTaxCodeRef.FullName.GetValue() End If End If 'Get value of SalesDesc if ( not OR.ItemInventoryRet.SalesDesc is nothing) then Dim SalesDesc14573 as String SalesDesc14573 = OR.ItemInventoryRet.SalesDesc.GetValue() End If 'Get value of SalesPrice if ( not OR.ItemInventoryRet.SalesPrice is nothing) then Dim SalesPrice14574 as Double SalesPrice14574 = OR.ItemInventoryRet.SalesPrice.GetValue() End If if (not OR.ItemInventoryRet.IncomeAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.IncomeAccountRef.ListID is nothing) then Dim ListID14575 as String ListID14575 = OR.ItemInventoryRet.IncomeAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.IncomeAccountRef.FullName is nothing) then Dim FullName14576 as String FullName14576 = OR.ItemInventoryRet.IncomeAccountRef.FullName.GetValue() End If End If 'Get value of PurchaseDesc if ( not OR.ItemInventoryRet.PurchaseDesc is nothing) then Dim PurchaseDesc14577 as String PurchaseDesc14577 = OR.ItemInventoryRet.PurchaseDesc.GetValue() End If 'Get value of PurchaseCost if ( not OR.ItemInventoryRet.PurchaseCost is nothing) then Dim PurchaseCost14578 as Double PurchaseCost14578 = OR.ItemInventoryRet.PurchaseCost.GetValue() End If if (not OR.ItemInventoryRet.PurchaseTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID is nothing) then Dim ListID14579 as String ListID14579 = OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName is nothing) then Dim FullName14580 as String FullName14580 = OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemInventoryRet.COGSAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.COGSAccountRef.ListID is nothing) then Dim ListID14581 as String ListID14581 = OR.ItemInventoryRet.COGSAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.COGSAccountRef.FullName is nothing) then Dim FullName14582 as String FullName14582 = OR.ItemInventoryRet.COGSAccountRef.FullName.GetValue() End If End If if (not OR.ItemInventoryRet.PrefVendorRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.PrefVendorRef.ListID is nothing) then Dim ListID14583 as String ListID14583 = OR.ItemInventoryRet.PrefVendorRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.PrefVendorRef.FullName is nothing) then Dim FullName14584 as String FullName14584 = OR.ItemInventoryRet.PrefVendorRef.FullName.GetValue() End If End If if (not OR.ItemInventoryRet.AssetAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryRet.AssetAccountRef.ListID is nothing) then Dim ListID14585 as String ListID14585 = OR.ItemInventoryRet.AssetAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryRet.AssetAccountRef.FullName is nothing) then Dim FullName14586 as String FullName14586 = OR.ItemInventoryRet.AssetAccountRef.FullName.GetValue() End If End If 'Get value of ReorderPoint if ( not OR.ItemInventoryRet.ReorderPoint is nothing) then Dim ReorderPoint14587 as Integer ReorderPoint14587 = OR.ItemInventoryRet.ReorderPoint.GetValue() End If 'Get value of Max if ( not OR.ItemInventoryRet.Max is nothing) then Dim Max14588 as Integer Max14588 = OR.ItemInventoryRet.Max.GetValue() End If 'Get value of QuantityOnHand if ( not OR.ItemInventoryRet.QuantityOnHand is nothing) then Dim QuantityOnHand14589 as Integer QuantityOnHand14589 = OR.ItemInventoryRet.QuantityOnHand.GetValue() End If 'Get value of AverageCost if ( not OR.ItemInventoryRet.AverageCost is nothing) then Dim AverageCost14590 as Double AverageCost14590 = OR.ItemInventoryRet.AverageCost.GetValue() End If 'Get value of QuantityOnOrder if ( not OR.ItemInventoryRet.QuantityOnOrder is nothing) then Dim QuantityOnOrder14591 as Integer QuantityOnOrder14591 = OR.ItemInventoryRet.QuantityOnOrder.GetValue() End If 'Get value of QuantityOnSalesOrder if ( not OR.ItemInventoryRet.QuantityOnSalesOrder is nothing) then Dim QuantityOnSalesOrder14592 as Integer QuantityOnSalesOrder14592 = OR.ItemInventoryRet.QuantityOnSalesOrder.GetValue() End If 'Get value of ExternalGUID if ( not OR.ItemInventoryRet.ExternalGUID is nothing) then Dim ExternalGUID14593 as String ExternalGUID14593 = OR.ItemInventoryRet.ExternalGUID.GetValue() End If if (not OR.ItemInventoryRet.DataExtRetList is nothing) Dim i14594 as Integer for i14594 = 0 to OR.ItemInventoryRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemInventoryRet.DataExtRetList.GetAt(i14594) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14595 as String OwnerID14595 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14596 as String DataExtName14596 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14597 as ENDataExtType DataExtType14597 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14598 as String DataExtValue14598 = DataExtRetDataExtValue.GetValue() Next i14594 End If End If if (not OR.ItemInventoryAssemblyRet. is nothing) then 'Get value of ListID Dim ListID14599 as String ListID14599 = OR.ItemInventoryAssemblyRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14600 as DateTime TimeCreated14600 = OR.ItemInventoryAssemblyRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14601 as DateTime TimeModified14601 = OR.ItemInventoryAssemblyRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14602 as String EditSequence14602 = OR.ItemInventoryAssemblyRet.EditSequence.GetValue() 'Get value of Name Dim Name14603 as String Name14603 = OR.ItemInventoryAssemblyRet.Name.GetValue() 'Get value of FullName Dim FullName14604 as String FullName14604 = OR.ItemInventoryAssemblyRet.FullName.GetValue() 'Get value of BarCodeValue if ( not OR.ItemInventoryAssemblyRet.BarCodeValue is nothing) then Dim BarCodeValue14605 as String BarCodeValue14605 = OR.ItemInventoryAssemblyRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemInventoryAssemblyRet.IsActive is nothing) then Dim IsActive14606 as Boolean IsActive14606 = OR.ItemInventoryAssemblyRet.IsActive.GetValue() End If if (not OR.ItemInventoryAssemblyRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.ClassRef.ListID is nothing) then Dim ListID14607 as String ListID14607 = OR.ItemInventoryAssemblyRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.ClassRef.FullName is nothing) then Dim FullName14608 as String FullName14608 = OR.ItemInventoryAssemblyRet.ClassRef.FullName.GetValue() End If End If if (not OR.ItemInventoryAssemblyRet.ParentRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.ParentRef.ListID is nothing) then Dim ListID14609 as String ListID14609 = OR.ItemInventoryAssemblyRet.ParentRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.ParentRef.FullName is nothing) then Dim FullName14610 as String FullName14610 = OR.ItemInventoryAssemblyRet.ParentRef.FullName.GetValue() End If End If 'Get value of Sublevel Dim Sublevel14611 as Integer Sublevel14611 = OR.ItemInventoryAssemblyRet.Sublevel.GetValue() 'Get value of ManufacturerPartNumber if ( not OR.ItemInventoryAssemblyRet.ManufacturerPartNumber is nothing) then Dim ManufacturerPartNumber14612 as String ManufacturerPartNumber14612 = OR.ItemInventoryAssemblyRet.ManufacturerPartNumber.GetValue() End If if (not OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID is nothing) then Dim ListID14613 as String ListID14613 = OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName is nothing) then Dim FullName14614 as String FullName14614 = OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName.GetValue() End If End If 'Get value of IsTaxIncluded if ( not OR.ItemInventoryAssemblyRet.IsTaxIncluded is nothing) then Dim IsTaxIncluded14615 as Boolean IsTaxIncluded14615 = OR.ItemInventoryAssemblyRet.IsTaxIncluded.GetValue() End If if (not OR.ItemInventoryAssemblyRet.SalesTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID is nothing) then Dim ListID14616 as String ListID14616 = OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName is nothing) then Dim FullName14617 as String FullName14617 = OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName.GetValue() End If End If 'Get value of SalesDesc if ( not OR.ItemInventoryAssemblyRet.SalesDesc is nothing) then Dim SalesDesc14618 as String SalesDesc14618 = OR.ItemInventoryAssemblyRet.SalesDesc.GetValue() End If 'Get value of SalesPrice if ( not OR.ItemInventoryAssemblyRet.SalesPrice is nothing) then Dim SalesPrice14619 as Double SalesPrice14619 = OR.ItemInventoryAssemblyRet.SalesPrice.GetValue() End If if (not OR.ItemInventoryAssemblyRet.IncomeAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID is nothing) then Dim ListID14620 as String ListID14620 = OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName is nothing) then Dim FullName14621 as String FullName14621 = OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName.GetValue() End If End If 'Get value of PurchaseDesc if ( not OR.ItemInventoryAssemblyRet.PurchaseDesc is nothing) then Dim PurchaseDesc14622 as String PurchaseDesc14622 = OR.ItemInventoryAssemblyRet.PurchaseDesc.GetValue() End If 'Get value of PurchaseCost if ( not OR.ItemInventoryAssemblyRet.PurchaseCost is nothing) then Dim PurchaseCost14623 as Double PurchaseCost14623 = OR.ItemInventoryAssemblyRet.PurchaseCost.GetValue() End If if (not OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID is nothing) then Dim ListID14624 as String ListID14624 = OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName is nothing) then Dim FullName14625 as String FullName14625 = OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemInventoryAssemblyRet.COGSAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID is nothing) then Dim ListID14626 as String ListID14626 = OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName is nothing) then Dim FullName14627 as String FullName14627 = OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName.GetValue() End If End If if (not OR.ItemInventoryAssemblyRet.PrefVendorRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID is nothing) then Dim ListID14628 as String ListID14628 = OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName is nothing) then Dim FullName14629 as String FullName14629 = OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName.GetValue() End If End If if (not OR.ItemInventoryAssemblyRet.AssetAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID is nothing) then Dim ListID14630 as String ListID14630 = OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName is nothing) then Dim FullName14631 as String FullName14631 = OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName.GetValue() End If End If 'Get value of BuildPoint if ( not OR.ItemInventoryAssemblyRet.BuildPoint is nothing) then Dim BuildPoint14632 as Integer BuildPoint14632 = OR.ItemInventoryAssemblyRet.BuildPoint.GetValue() End If 'Get value of Max if ( not OR.ItemInventoryAssemblyRet.Max is nothing) then Dim Max14633 as Integer Max14633 = OR.ItemInventoryAssemblyRet.Max.GetValue() End If 'Get value of QuantityOnHand if ( not OR.ItemInventoryAssemblyRet.QuantityOnHand is nothing) then Dim QuantityOnHand14634 as Integer QuantityOnHand14634 = OR.ItemInventoryAssemblyRet.QuantityOnHand.GetValue() End If 'Get value of AverageCost if ( not OR.ItemInventoryAssemblyRet.AverageCost is nothing) then Dim AverageCost14635 as Double AverageCost14635 = OR.ItemInventoryAssemblyRet.AverageCost.GetValue() End If 'Get value of QuantityOnOrder if ( not OR.ItemInventoryAssemblyRet.QuantityOnOrder is nothing) then Dim QuantityOnOrder14636 as Integer QuantityOnOrder14636 = OR.ItemInventoryAssemblyRet.QuantityOnOrder.GetValue() End If 'Get value of QuantityOnSalesOrder if ( not OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder is nothing) then Dim QuantityOnSalesOrder14637 as Integer QuantityOnSalesOrder14637 = OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder.GetValue() End If 'Get value of ExternalGUID if ( not OR.ItemInventoryAssemblyRet.ExternalGUID is nothing) then Dim ExternalGUID14638 as String ExternalGUID14638 = OR.ItemInventoryAssemblyRet.ExternalGUID.GetValue() End If if (not OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList is nothing) Dim i14639 as Integer for i14639 = 0 to OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.Count - 1 Dim ItemInventoryAssemblyLine as IItemInventoryAssemblyLine ItemInventoryAssemblyLine = OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.GetAt(i14639) 'Get value of ListID if ( not ItemInventoryAssemblyLineItemInventoryRef.ListID is nothing) then Dim ListID14640 as String ListID14640 = ItemInventoryAssemblyLineItemInventoryRef.ListID.GetValue() End If 'Get value of FullName if ( not ItemInventoryAssemblyLineItemInventoryRef.FullName is nothing) then Dim FullName14641 as String FullName14641 = ItemInventoryAssemblyLineItemInventoryRef.FullName.GetValue() End If 'Get value of Quantity if ( not ItemInventoryAssemblyLineQuantity is nothing) then Dim Quantity14642 as Integer Quantity14642 = ItemInventoryAssemblyLineQuantity.GetValue() End If Next i14639 End If if (not OR.ItemInventoryAssemblyRet.DataExtRetList is nothing) Dim i14643 as Integer for i14643 = 0 to OR.ItemInventoryAssemblyRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemInventoryAssemblyRet.DataExtRetList.GetAt(i14643) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14644 as String OwnerID14644 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14645 as String DataExtName14645 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14646 as ENDataExtType DataExtType14646 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14647 as String DataExtValue14647 = DataExtRetDataExtValue.GetValue() Next i14643 End If End If if (not OR.ItemFixedAssetRet. is nothing) then 'Get value of ListID Dim ListID14648 as String ListID14648 = OR.ItemFixedAssetRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14649 as DateTime TimeCreated14649 = OR.ItemFixedAssetRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14650 as DateTime TimeModified14650 = OR.ItemFixedAssetRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14651 as String EditSequence14651 = OR.ItemFixedAssetRet.EditSequence.GetValue() 'Get value of Name Dim Name14652 as String Name14652 = OR.ItemFixedAssetRet.Name.GetValue() 'Get value of BarCodeValue if ( not OR.ItemFixedAssetRet.BarCodeValue is nothing) then Dim BarCodeValue14653 as String BarCodeValue14653 = OR.ItemFixedAssetRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemFixedAssetRet.IsActive is nothing) then Dim IsActive14654 as Boolean IsActive14654 = OR.ItemFixedAssetRet.IsActive.GetValue() End If if (not OR.ItemFixedAssetRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemFixedAssetRet.ClassRef.ListID is nothing) then Dim ListID14655 as String ListID14655 = OR.ItemFixedAssetRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemFixedAssetRet.ClassRef.FullName is nothing) then Dim FullName14656 as String FullName14656 = OR.ItemFixedAssetRet.ClassRef.FullName.GetValue() End If End If 'Get value of AcquiredAs Dim AcquiredAs14657 as ENAcquiredAs AcquiredAs14657 = OR.ItemFixedAssetRet.AcquiredAs.GetValue() 'Get value of PurchaseDesc Dim PurchaseDesc14658 as String PurchaseDesc14658 = OR.ItemFixedAssetRet.PurchaseDesc.GetValue() 'Get value of PurchaseDate Dim PurchaseDate14659 as DateTime PurchaseDate14659 = OR.ItemFixedAssetRet.PurchaseDate.GetValue() 'Get value of PurchaseCost if ( not OR.ItemFixedAssetRet.PurchaseCost is nothing) then Dim PurchaseCost14660 as Double PurchaseCost14660 = OR.ItemFixedAssetRet.PurchaseCost.GetValue() End If 'Get value of VendorOrPayeeName if ( not OR.ItemFixedAssetRet.VendorOrPayeeName is nothing) then Dim VendorOrPayeeName14661 as String VendorOrPayeeName14661 = OR.ItemFixedAssetRet.VendorOrPayeeName.GetValue() End If if (not OR.ItemFixedAssetRet.AssetAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemFixedAssetRet.AssetAccountRef.ListID is nothing) then Dim ListID14662 as String ListID14662 = OR.ItemFixedAssetRet.AssetAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemFixedAssetRet.AssetAccountRef.FullName is nothing) then Dim FullName14663 as String FullName14663 = OR.ItemFixedAssetRet.AssetAccountRef.FullName.GetValue() End If End If if (not OR.ItemFixedAssetRet.FixedAssetSalesInfo. is nothing) then 'Get value of SalesDesc Dim SalesDesc14664 as String SalesDesc14664 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDesc.GetValue() 'Get value of SalesDate Dim SalesDate14665 as DateTime SalesDate14665 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDate.GetValue() 'Get value of SalesPrice if ( not OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice is nothing) then Dim SalesPrice14666 as Double SalesPrice14666 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice.GetValue() End If 'Get value of SalesExpense if ( not OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense is nothing) then Dim SalesExpense14667 as Double SalesExpense14667 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense.GetValue() End If End If 'Get value of AssetDesc if ( not OR.ItemFixedAssetRet.AssetDesc is nothing) then Dim AssetDesc14668 as String AssetDesc14668 = OR.ItemFixedAssetRet.AssetDesc.GetValue() End If 'Get value of Location if ( not OR.ItemFixedAssetRet.Location is nothing) then Dim Location14669 as String Location14669 = OR.ItemFixedAssetRet.Location.GetValue() End If 'Get value of PONumber if ( not OR.ItemFixedAssetRet.PONumber is nothing) then Dim PONumber14670 as String PONumber14670 = OR.ItemFixedAssetRet.PONumber.GetValue() End If 'Get value of SerialNumber if ( not OR.ItemFixedAssetRet.SerialNumber is nothing) then Dim SerialNumber14671 as String SerialNumber14671 = OR.ItemFixedAssetRet.SerialNumber.GetValue() End If 'Get value of WarrantyExpDate if ( not OR.ItemFixedAssetRet.WarrantyExpDate is nothing) then Dim WarrantyExpDate14672 as DateTime WarrantyExpDate14672 = OR.ItemFixedAssetRet.WarrantyExpDate.GetValue() End If 'Get value of Notes if ( not OR.ItemFixedAssetRet.Notes is nothing) then Dim Notes14673 as String Notes14673 = OR.ItemFixedAssetRet.Notes.GetValue() End If 'Get value of AssetNumber if ( not OR.ItemFixedAssetRet.AssetNumber is nothing) then Dim AssetNumber14674 as String AssetNumber14674 = OR.ItemFixedAssetRet.AssetNumber.GetValue() End If 'Get value of CostBasis if ( not OR.ItemFixedAssetRet.CostBasis is nothing) then Dim CostBasis14675 as Double CostBasis14675 = OR.ItemFixedAssetRet.CostBasis.GetValue() End If 'Get value of YearEndAccumulatedDepreciation if ( not OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation is nothing) then Dim YearEndAccumulatedDepreciation14676 as Double YearEndAccumulatedDepreciation14676 = OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation.GetValue() End If 'Get value of YearEndBookValue if ( not OR.ItemFixedAssetRet.YearEndBookValue is nothing) then Dim YearEndBookValue14677 as Double YearEndBookValue14677 = OR.ItemFixedAssetRet.YearEndBookValue.GetValue() End If 'Get value of ExternalGUID if ( not OR.ItemFixedAssetRet.ExternalGUID is nothing) then Dim ExternalGUID14678 as String ExternalGUID14678 = OR.ItemFixedAssetRet.ExternalGUID.GetValue() End If if (not OR.ItemFixedAssetRet.DataExtRetList is nothing) Dim i14679 as Integer for i14679 = 0 to OR.ItemFixedAssetRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemFixedAssetRet.DataExtRetList.GetAt(i14679) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14680 as String OwnerID14680 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14681 as String DataExtName14681 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14682 as ENDataExtType DataExtType14682 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14683 as String DataExtValue14683 = DataExtRetDataExtValue.GetValue() Next i14679 End If End If if (not OR.ItemSubtotalRet. is nothing) then 'Get value of ListID Dim ListID14684 as String ListID14684 = OR.ItemSubtotalRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14685 as DateTime TimeCreated14685 = OR.ItemSubtotalRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14686 as DateTime TimeModified14686 = OR.ItemSubtotalRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14687 as String EditSequence14687 = OR.ItemSubtotalRet.EditSequence.GetValue() 'Get value of Name Dim Name14688 as String Name14688 = OR.ItemSubtotalRet.Name.GetValue() 'Get value of BarCodeValue if ( not OR.ItemSubtotalRet.BarCodeValue is nothing) then Dim BarCodeValue14689 as String BarCodeValue14689 = OR.ItemSubtotalRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemSubtotalRet.IsActive is nothing) then Dim IsActive14690 as Boolean IsActive14690 = OR.ItemSubtotalRet.IsActive.GetValue() End If 'Get value of ItemDesc if ( not OR.ItemSubtotalRet.ItemDesc is nothing) then Dim ItemDesc14691 as String ItemDesc14691 = OR.ItemSubtotalRet.ItemDesc.GetValue() End If 'Get value of SpecialItemType if ( not OR.ItemSubtotalRet.SpecialItemType is nothing) then Dim SpecialItemType14692 as ENSpecialItemType SpecialItemType14692 = OR.ItemSubtotalRet.SpecialItemType.GetValue() End If 'Get value of ExternalGUID if ( not OR.ItemSubtotalRet.ExternalGUID is nothing) then Dim ExternalGUID14693 as String ExternalGUID14693 = OR.ItemSubtotalRet.ExternalGUID.GetValue() End If if (not OR.ItemSubtotalRet.DataExtRetList is nothing) Dim i14694 as Integer for i14694 = 0 to OR.ItemSubtotalRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemSubtotalRet.DataExtRetList.GetAt(i14694) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14695 as String OwnerID14695 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14696 as String DataExtName14696 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14697 as ENDataExtType DataExtType14697 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14698 as String DataExtValue14698 = DataExtRetDataExtValue.GetValue() Next i14694 End If End If if (not OR.ItemDiscountRet. is nothing) then 'Get value of ListID Dim ListID14699 as String ListID14699 = OR.ItemDiscountRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14700 as DateTime TimeCreated14700 = OR.ItemDiscountRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14701 as DateTime TimeModified14701 = OR.ItemDiscountRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14702 as String EditSequence14702 = OR.ItemDiscountRet.EditSequence.GetValue() 'Get value of Name Dim Name14703 as String Name14703 = OR.ItemDiscountRet.Name.GetValue() 'Get value of FullName Dim FullName14704 as String FullName14704 = OR.ItemDiscountRet.FullName.GetValue() 'Get value of BarCodeValue if ( not OR.ItemDiscountRet.BarCodeValue is nothing) then Dim BarCodeValue14705 as String BarCodeValue14705 = OR.ItemDiscountRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemDiscountRet.IsActive is nothing) then Dim IsActive14706 as Boolean IsActive14706 = OR.ItemDiscountRet.IsActive.GetValue() End If if (not OR.ItemDiscountRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemDiscountRet.ClassRef.ListID is nothing) then Dim ListID14707 as String ListID14707 = OR.ItemDiscountRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemDiscountRet.ClassRef.FullName is nothing) then Dim FullName14708 as String FullName14708 = OR.ItemDiscountRet.ClassRef.FullName.GetValue() End If End If if (not OR.ItemDiscountRet.ParentRef. is nothing) then 'Get value of ListID if ( not OR.ItemDiscountRet.ParentRef.ListID is nothing) then Dim ListID14709 as String ListID14709 = OR.ItemDiscountRet.ParentRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemDiscountRet.ParentRef.FullName is nothing) then Dim FullName14710 as String FullName14710 = OR.ItemDiscountRet.ParentRef.FullName.GetValue() End If End If 'Get value of Sublevel Dim Sublevel14711 as Integer Sublevel14711 = OR.ItemDiscountRet.Sublevel.GetValue() 'Get value of ItemDesc if ( not OR.ItemDiscountRet.ItemDesc is nothing) then Dim ItemDesc14712 as String ItemDesc14712 = OR.ItemDiscountRet.ItemDesc.GetValue() End If if (not OR.ItemDiscountRet.SalesTaxCodeRef. is nothing) then 'Get value of ListID if ( not OR.ItemDiscountRet.SalesTaxCodeRef.ListID is nothing) then Dim ListID14713 as String ListID14713 = OR.ItemDiscountRet.SalesTaxCodeRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemDiscountRet.SalesTaxCodeRef.FullName is nothing) then Dim FullName14714 as String FullName14714 = OR.ItemDiscountRet.SalesTaxCodeRef.FullName.GetValue() End If End If if (not OR.ItemDiscountRet.ORDiscountRate is nothing) then if (not OR.ItemDiscountRet.ORDiscountRate.DiscountRate is nothing) then 'Get value of DiscountRate if ( not OR.ItemDiscountRet.ORDiscountRate.DiscountRate is nothing) then Dim DiscountRate14716 as Double DiscountRate14716 = OR.ItemDiscountRet.ORDiscountRate.DiscountRate.GetValue() End If End If if (not OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent is nothing) then 'Get value of DiscountRatePercent if ( not OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent is nothing) then Dim DiscountRatePercent14717 as Double DiscountRatePercent14717 = OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent.GetValue() End If End If End If if (not OR.ItemDiscountRet.AccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemDiscountRet.AccountRef.ListID is nothing) then Dim ListID14718 as String ListID14718 = OR.ItemDiscountRet.AccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemDiscountRet.AccountRef.FullName is nothing) then Dim FullName14719 as String FullName14719 = OR.ItemDiscountRet.AccountRef.FullName.GetValue() End If End If 'Get value of ExternalGUID if ( not OR.ItemDiscountRet.ExternalGUID is nothing) then Dim ExternalGUID14720 as String ExternalGUID14720 = OR.ItemDiscountRet.ExternalGUID.GetValue() End If if (not OR.ItemDiscountRet.DataExtRetList is nothing) Dim i14721 as Integer for i14721 = 0 to OR.ItemDiscountRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemDiscountRet.DataExtRetList.GetAt(i14721) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14722 as String OwnerID14722 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14723 as String DataExtName14723 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14724 as ENDataExtType DataExtType14724 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14725 as String DataExtValue14725 = DataExtRetDataExtValue.GetValue() Next i14721 End If End If if (not OR.ItemPaymentRet. is nothing) then 'Get value of ListID Dim ListID14726 as String ListID14726 = OR.ItemPaymentRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14727 as DateTime TimeCreated14727 = OR.ItemPaymentRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14728 as DateTime TimeModified14728 = OR.ItemPaymentRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14729 as String EditSequence14729 = OR.ItemPaymentRet.EditSequence.GetValue() 'Get value of Name Dim Name14730 as String Name14730 = OR.ItemPaymentRet.Name.GetValue() 'Get value of BarCodeValue if ( not OR.ItemPaymentRet.BarCodeValue is nothing) then Dim BarCodeValue14731 as String BarCodeValue14731 = OR.ItemPaymentRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemPaymentRet.IsActive is nothing) then Dim IsActive14732 as Boolean IsActive14732 = OR.ItemPaymentRet.IsActive.GetValue() End If if (not OR.ItemPaymentRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemPaymentRet.ClassRef.ListID is nothing) then Dim ListID14733 as String ListID14733 = OR.ItemPaymentRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemPaymentRet.ClassRef.FullName is nothing) then Dim FullName14734 as String FullName14734 = OR.ItemPaymentRet.ClassRef.FullName.GetValue() End If End If 'Get value of ItemDesc if ( not OR.ItemPaymentRet.ItemDesc is nothing) then Dim ItemDesc14735 as String ItemDesc14735 = OR.ItemPaymentRet.ItemDesc.GetValue() End If if (not OR.ItemPaymentRet.DepositToAccountRef. is nothing) then 'Get value of ListID if ( not OR.ItemPaymentRet.DepositToAccountRef.ListID is nothing) then Dim ListID14736 as String ListID14736 = OR.ItemPaymentRet.DepositToAccountRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemPaymentRet.DepositToAccountRef.FullName is nothing) then Dim FullName14737 as String FullName14737 = OR.ItemPaymentRet.DepositToAccountRef.FullName.GetValue() End If End If if (not OR.ItemPaymentRet.PaymentMethodRef. is nothing) then 'Get value of ListID if ( not OR.ItemPaymentRet.PaymentMethodRef.ListID is nothing) then Dim ListID14738 as String ListID14738 = OR.ItemPaymentRet.PaymentMethodRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemPaymentRet.PaymentMethodRef.FullName is nothing) then Dim FullName14739 as String FullName14739 = OR.ItemPaymentRet.PaymentMethodRef.FullName.GetValue() End If End If 'Get value of ExternalGUID if ( not OR.ItemPaymentRet.ExternalGUID is nothing) then Dim ExternalGUID14740 as String ExternalGUID14740 = OR.ItemPaymentRet.ExternalGUID.GetValue() End If if (not OR.ItemPaymentRet.DataExtRetList is nothing) Dim i14741 as Integer for i14741 = 0 to OR.ItemPaymentRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemPaymentRet.DataExtRetList.GetAt(i14741) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14742 as String OwnerID14742 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14743 as String DataExtName14743 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14744 as ENDataExtType DataExtType14744 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14745 as String DataExtValue14745 = DataExtRetDataExtValue.GetValue() Next i14741 End If End If if (not OR.ItemSalesTaxRet. is nothing) then 'Get value of ListID Dim ListID14746 as String ListID14746 = OR.ItemSalesTaxRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14747 as DateTime TimeCreated14747 = OR.ItemSalesTaxRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14748 as DateTime TimeModified14748 = OR.ItemSalesTaxRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14749 as String EditSequence14749 = OR.ItemSalesTaxRet.EditSequence.GetValue() 'Get value of Name Dim Name14750 as String Name14750 = OR.ItemSalesTaxRet.Name.GetValue() 'Get value of BarCodeValue if ( not OR.ItemSalesTaxRet.BarCodeValue is nothing) then Dim BarCodeValue14751 as String BarCodeValue14751 = OR.ItemSalesTaxRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemSalesTaxRet.IsActive is nothing) then Dim IsActive14752 as Boolean IsActive14752 = OR.ItemSalesTaxRet.IsActive.GetValue() End If if (not OR.ItemSalesTaxRet.ClassRef. is nothing) then 'Get value of ListID if ( not OR.ItemSalesTaxRet.ClassRef.ListID is nothing) then Dim ListID14753 as String ListID14753 = OR.ItemSalesTaxRet.ClassRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemSalesTaxRet.ClassRef.FullName is nothing) then Dim FullName14754 as String FullName14754 = OR.ItemSalesTaxRet.ClassRef.FullName.GetValue() End If End If 'Get value of ItemDesc if ( not OR.ItemSalesTaxRet.ItemDesc is nothing) then Dim ItemDesc14755 as String ItemDesc14755 = OR.ItemSalesTaxRet.ItemDesc.GetValue() End If 'Get value of TaxRate if ( not OR.ItemSalesTaxRet.TaxRate is nothing) then Dim TaxRate14756 as Double TaxRate14756 = OR.ItemSalesTaxRet.TaxRate.GetValue() End If if (not OR.ItemSalesTaxRet.TaxVendorRef. is nothing) then 'Get value of ListID if ( not OR.ItemSalesTaxRet.TaxVendorRef.ListID is nothing) then Dim ListID14757 as String ListID14757 = OR.ItemSalesTaxRet.TaxVendorRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemSalesTaxRet.TaxVendorRef.FullName is nothing) then Dim FullName14758 as String FullName14758 = OR.ItemSalesTaxRet.TaxVendorRef.FullName.GetValue() End If End If if (not OR.ItemSalesTaxRet.SalesTaxReturnLineRef. is nothing) then 'Get value of ListID if ( not OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID is nothing) then Dim ListID14759 as String ListID14759 = OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName is nothing) then Dim FullName14760 as String FullName14760 = OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName.GetValue() End If End If 'Get value of ExternalGUID if ( not OR.ItemSalesTaxRet.ExternalGUID is nothing) then Dim ExternalGUID14761 as String ExternalGUID14761 = OR.ItemSalesTaxRet.ExternalGUID.GetValue() End If if (not OR.ItemSalesTaxRet.DataExtRetList is nothing) Dim i14762 as Integer for i14762 = 0 to OR.ItemSalesTaxRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemSalesTaxRet.DataExtRetList.GetAt(i14762) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14763 as String OwnerID14763 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14764 as String DataExtName14764 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14765 as ENDataExtType DataExtType14765 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14766 as String DataExtValue14766 = DataExtRetDataExtValue.GetValue() Next i14762 End If End If if (not OR.ItemSalesTaxGroupRet. is nothing) then 'Get value of ListID Dim ListID14767 as String ListID14767 = OR.ItemSalesTaxGroupRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14768 as DateTime TimeCreated14768 = OR.ItemSalesTaxGroupRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14769 as DateTime TimeModified14769 = OR.ItemSalesTaxGroupRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14770 as String EditSequence14770 = OR.ItemSalesTaxGroupRet.EditSequence.GetValue() 'Get value of Name Dim Name14771 as String Name14771 = OR.ItemSalesTaxGroupRet.Name.GetValue() 'Get value of BarCodeValue if ( not OR.ItemSalesTaxGroupRet.BarCodeValue is nothing) then Dim BarCodeValue14772 as String BarCodeValue14772 = OR.ItemSalesTaxGroupRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemSalesTaxGroupRet.IsActive is nothing) then Dim IsActive14773 as Boolean IsActive14773 = OR.ItemSalesTaxGroupRet.IsActive.GetValue() End If 'Get value of ItemDesc if ( not OR.ItemSalesTaxGroupRet.ItemDesc is nothing) then Dim ItemDesc14774 as String ItemDesc14774 = OR.ItemSalesTaxGroupRet.ItemDesc.GetValue() End If 'Get value of ExternalGUID if ( not OR.ItemSalesTaxGroupRet.ExternalGUID is nothing) then Dim ExternalGUID14775 as String ExternalGUID14775 = OR.ItemSalesTaxGroupRet.ExternalGUID.GetValue() End If if (not OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList is nothing) Dim i14776 as Integer for i14776 = 0 to OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.Count - 1 Dim QBBaseRef as IQBBaseRef QBBaseRef = OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.GetAt(i14776) 'Get value of ListID if ( not QBBaseRefListID is nothing) then Dim ListID14777 as String ListID14777 = QBBaseRefListID.GetValue() End If 'Get value of FullName if ( not QBBaseRefFullName is nothing) then Dim FullName14778 as String FullName14778 = QBBaseRefFullName.GetValue() End If Next i14776 End If if (not OR.ItemSalesTaxGroupRet.DataExtRetList is nothing) Dim i14779 as Integer for i14779 = 0 to OR.ItemSalesTaxGroupRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemSalesTaxGroupRet.DataExtRetList.GetAt(i14779) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14780 as String OwnerID14780 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14781 as String DataExtName14781 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14782 as ENDataExtType DataExtType14782 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14783 as String DataExtValue14783 = DataExtRetDataExtValue.GetValue() Next i14779 End If End If if (not OR.ItemGroupRet. is nothing) then 'Get value of ListID Dim ListID14784 as String ListID14784 = OR.ItemGroupRet.ListID.GetValue() 'Get value of TimeCreated Dim TimeCreated14785 as DateTime TimeCreated14785 = OR.ItemGroupRet.TimeCreated.GetValue() 'Get value of TimeModified Dim TimeModified14786 as DateTime TimeModified14786 = OR.ItemGroupRet.TimeModified.GetValue() 'Get value of EditSequence Dim EditSequence14787 as String EditSequence14787 = OR.ItemGroupRet.EditSequence.GetValue() 'Get value of Name Dim Name14788 as String Name14788 = OR.ItemGroupRet.Name.GetValue() 'Get value of BarCodeValue if ( not OR.ItemGroupRet.BarCodeValue is nothing) then Dim BarCodeValue14789 as String BarCodeValue14789 = OR.ItemGroupRet.BarCodeValue.GetValue() End If 'Get value of IsActive if ( not OR.ItemGroupRet.IsActive is nothing) then Dim IsActive14790 as Boolean IsActive14790 = OR.ItemGroupRet.IsActive.GetValue() End If 'Get value of ItemDesc if ( not OR.ItemGroupRet.ItemDesc is nothing) then Dim ItemDesc14791 as String ItemDesc14791 = OR.ItemGroupRet.ItemDesc.GetValue() End If if (not OR.ItemGroupRet.UnitOfMeasureSetRef. is nothing) then 'Get value of ListID if ( not OR.ItemGroupRet.UnitOfMeasureSetRef.ListID is nothing) then Dim ListID14792 as String ListID14792 = OR.ItemGroupRet.UnitOfMeasureSetRef.ListID.GetValue() End If 'Get value of FullName if ( not OR.ItemGroupRet.UnitOfMeasureSetRef.FullName is nothing) then Dim FullName14793 as String FullName14793 = OR.ItemGroupRet.UnitOfMeasureSetRef.FullName.GetValue() End If End If 'Get value of IsPrintItemsInGroup if ( not OR.ItemGroupRet.IsPrintItemsInGroup is nothing) then Dim IsPrintItemsInGroup14794 as Boolean IsPrintItemsInGroup14794 = OR.ItemGroupRet.IsPrintItemsInGroup.GetValue() End If 'Get value of SpecialItemType if ( not OR.ItemGroupRet.SpecialItemType is nothing) then Dim SpecialItemType14795 as ENSpecialItemType SpecialItemType14795 = OR.ItemGroupRet.SpecialItemType.GetValue() End If 'Get value of ExternalGUID if ( not OR.ItemGroupRet.ExternalGUID is nothing) then Dim ExternalGUID14796 as String ExternalGUID14796 = OR.ItemGroupRet.ExternalGUID.GetValue() End If if (not OR.ItemGroupRet.ItemGroupLineList is nothing) Dim i14797 as Integer for i14797 = 0 to OR.ItemGroupRet.ItemGroupLineList.Count - 1 Dim ItemGroupLine as IItemGroupLine ItemGroupLine = OR.ItemGroupRet.ItemGroupLineList.GetAt(i14797) if (not ItemGroupLineItemRef. is nothing) then 'Get value of ListID if ( not ItemGroupLineItemRef.ListID is nothing) then Dim ListID14798 as String ListID14798 = ItemGroupLineItemRef.ListID.GetValue() End If 'Get value of FullName if ( not ItemGroupLineItemRef.FullName is nothing) then Dim FullName14799 as String FullName14799 = ItemGroupLineItemRef.FullName.GetValue() End If End If 'Get value of Quantity if ( not ItemGroupLineQuantity is nothing) then Dim Quantity14800 as Integer Quantity14800 = ItemGroupLineQuantity.GetValue() End If 'Get value of UnitOfMeasure if ( not ItemGroupLineUnitOfMeasure is nothing) then Dim UnitOfMeasure14801 as String UnitOfMeasure14801 = ItemGroupLineUnitOfMeasure.GetValue() End If Next i14797 End If if (not OR.ItemGroupRet.DataExtRetList is nothing) Dim i14802 as Integer for i14802 = 0 to OR.ItemGroupRet.DataExtRetList.Count - 1 Dim DataExtRet as IDataExtRet DataExtRet = OR.ItemGroupRet.DataExtRetList.GetAt(i14802) 'Get value of OwnerID if ( not DataExtRetOwnerID is nothing) then Dim OwnerID14803 as String OwnerID14803 = DataExtRetOwnerID.GetValue() End If 'Get value of DataExtName Dim DataExtName14804 as String DataExtName14804 = DataExtRetDataExtName.GetValue() 'Get value of DataExtType Dim DataExtType14805 as ENDataExtType DataExtType14805 = DataExtRetDataExtType.GetValue() 'Get value of DataExtValue Dim DataExtValue14806 as String DataExtValue14806 = DataExtRetDataExtValue.GetValue() Next i14802 End If End If End Sub End Class End Module |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 | //The following sample code is generated as an illustration of //Creating requests and parsing responses ONLY //This code is NOT intended to show best practices or ideal code //Use at your most careful discretion using System; using System.Net; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.IO; using Interop.QBFC16; namespace com.intuit.idn.samples { public class Sample { public void DoItemQuery() { bool sessionBegun = false; bool connectionOpen = false; QBSessionManager sessionManager = null; try { //Create the session Manager object sessionManager = new QBSessionManager(); //Create the message set request object to hold our request IMsgSetRequest requestMsgSet = sessionManager.CreateMsgSetRequest("US",16,0); requestMsgSet.Attributes.OnError = ENRqOnError.roeContinue; BuildItemQueryRq(requestMsgSet); //Connect to QuickBooks and begin a session sessionManager.OpenConnection("","Sample Code from OSR"); connectionOpen = true; sessionManager.BeginSession("", ENOpenMode.omDontCare); sessionBegun = true; //Send the request and get the response from QuickBooks IMsgSetResponse responseMsgSet = sessionManager.DoRequests(requestMsgSet); //End the session and close the connection to QuickBooks sessionManager.EndSession(); sessionBegun = false; sessionManager.CloseConnection(); connectionOpen = false; WalkItemQueryRs(responseMsgSet); } catch (Exception e) { MessageBox.Show(e.Message, "Error"); if (sessionBegun) { sessionManager.EndSession(); } if (connectionOpen) { sessionManager.CloseConnection(); } } } void BuildItemQueryRq(IMsgSetRequest requestMsgSet) { IItemQuery ItemQueryRq= requestMsgSet.AppendItemQueryRq(); //Set attributes //Set field value for metaData ItemQueryRq.metaData.SetValue("IQBENmetaDataType"); //Set field value for iterator ItemQueryRq.iterator.SetValue("IQBENiteratorType"); //Set field value for iteratorID ItemQueryRq.iteratorID.SetValue("IQBUUIDType"); string ORListQueryElementType14039 = "ListIDList"; if (ORListQueryElementType14039 == "ListIDList") { //Set field value for ListIDList //May create more than one of these if needed ItemQueryRq.ORListQuery.ListIDList.Add("200000-1011023419"); } if (ORListQueryElementType14039 == "FullNameList") { //Set field value for FullNameList //May create more than one of these if needed ItemQueryRq.ORListQuery.FullNameList.Add("ab"); } if (ORListQueryElementType14039 == "ListFilter") { //Set field value for MaxReturned ItemQueryRq.ORListQuery.ListFilter.MaxReturned.SetValue(6); //Set field value for ActiveStatus ItemQueryRq.ORListQuery.ListFilter.ActiveStatus.SetValue(ENActiveStatus.asActiveOnly [DEFAULT]); //Set field value for FromModifiedDate ItemQueryRq.ORListQuery.ListFilter.FromModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false); //Set field value for ToModifiedDate ItemQueryRq.ORListQuery.ListFilter.ToModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false); string ORNameFilterElementType14040 = "NameFilter"; if (ORNameFilterElementType14040 == "NameFilter") { //Set field value for MatchCriterion ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.MatchCriterion.SetValue(ENMatchCriterion.mcStartsWith); //Set field value for Name ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.Name.SetValue("ab"); } if (ORNameFilterElementType14040 == "NameRangeFilter") { //Set field value for FromName ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.FromName.SetValue("ab"); //Set field value for ToName ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.ToName.SetValue("ab"); } } //Set field value for IncludeRetElementList //May create more than one of these if needed ItemQueryRq.IncludeRetElementList.Add("ab"); //Set field value for OwnerIDList //May create more than one of these if needed ItemQueryRq.OwnerIDList.Add(Guid.NewGuid().ToString()); } void WalkItemQueryRs(IMsgSetResponse responseMsgSet) { if (responseMsgSet == null) return; IResponseList responseList = responseMsgSet.ResponseList; if (responseList == null) return; //if we sent only one request, there is only one response, we'll walk the list for this sample for(int i=0; i < responseList.Count; i++) { IResponse response = responseList.GetAt(i); //check the status code of the response, 0=ok, >0 is warning if (response.StatusCode >= 0) { //the request-specific response is in the details, make sure we have some if (response.Detail != null) { //make sure the response is the type we're expecting ENResponseType responseType = (ENResponseType)response.Type.GetValue(); if (responseType == ENResponseType.rtItemQueryRs) { //upcast to more specific type here, this is safe because we checked with response.Type check above IORItemRetList OR = (IORItemRetList)response.Detail; WalkOR(OR); } } } } } void WalkOR(IORItemRetList OR) { if (OR == null) return; //Go through all the elements of IORItemRetList if (OR.ItemServiceRet != null) { //Get value of ListID string ListID14041 = (string)OR.ItemServiceRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14042 = (DateTime)OR.ItemServiceRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14043 = (DateTime)OR.ItemServiceRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14044 = (string)OR.ItemServiceRet.EditSequence.GetValue(); //Get value of Name string Name14045 = (string)OR.ItemServiceRet.Name.GetValue(); //Get value of FullName string FullName14046 = (string)OR.ItemServiceRet.FullName.GetValue(); //Get value of BarCodeValue if (OR.ItemServiceRet.BarCodeValue != null) { string BarCodeValue14047 = (string)OR.ItemServiceRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemServiceRet.IsActive != null) { bool IsActive14048 = (bool)OR.ItemServiceRet.IsActive.GetValue(); } if (OR.ItemServiceRet.ClassRef != null) { //Get value of ListID if (OR.ItemServiceRet.ClassRef.ListID != null) { string ListID14049 = (string)OR.ItemServiceRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.ClassRef.FullName != null) { string FullName14050 = (string)OR.ItemServiceRet.ClassRef.FullName.GetValue(); } } if (OR.ItemServiceRet.ParentRef != null) { //Get value of ListID if (OR.ItemServiceRet.ParentRef.ListID != null) { string ListID14051 = (string)OR.ItemServiceRet.ParentRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.ParentRef.FullName != null) { string FullName14052 = (string)OR.ItemServiceRet.ParentRef.FullName.GetValue(); } } //Get value of Sublevel int Sublevel14053 = (int)OR.ItemServiceRet.Sublevel.GetValue(); if (OR.ItemServiceRet.UnitOfMeasureSetRef != null) { //Get value of ListID if (OR.ItemServiceRet.UnitOfMeasureSetRef.ListID != null) { string ListID14054 = (string)OR.ItemServiceRet.UnitOfMeasureSetRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.UnitOfMeasureSetRef.FullName != null) { string FullName14055 = (string)OR.ItemServiceRet.UnitOfMeasureSetRef.FullName.GetValue(); } } //Get value of IsTaxIncluded if (OR.ItemServiceRet.IsTaxIncluded != null) { bool IsTaxIncluded14056 = (bool)OR.ItemServiceRet.IsTaxIncluded.GetValue(); } if (OR.ItemServiceRet.SalesTaxCodeRef != null) { //Get value of ListID if (OR.ItemServiceRet.SalesTaxCodeRef.ListID != null) { string ListID14057 = (string)OR.ItemServiceRet.SalesTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.SalesTaxCodeRef.FullName != null) { string FullName14058 = (string)OR.ItemServiceRet.SalesTaxCodeRef.FullName.GetValue(); } } if (OR.ItemServiceRet.ORSalesPurchase != null) { if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase != null) { if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase != null) { //Get value of Desc if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc != null) { string Desc14060 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue(); } if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice != null) { if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null) { //Get value of Price if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null) { double Price14062 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue(); } } if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null) { //Get value of PricePercent if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null) { double PricePercent14063 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue(); } } } if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef != null) { //Get value of ListID if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID != null) { string ListID14064 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName != null) { string FullName14065 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue(); } } } } if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase != null) { if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase != null) { //Get value of SalesDesc if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc != null) { string SalesDesc14066 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue(); } //Get value of SalesPrice if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice != null) { double SalesPrice14067 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue(); } if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef != null) { //Get value of ListID if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID != null) { string ListID14068 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName != null) { string FullName14069 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue(); } } //Get value of PurchaseDesc if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc != null) { string PurchaseDesc14070 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue(); } //Get value of PurchaseCost if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost != null) { double PurchaseCost14071 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue(); } if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef != null) { //Get value of ListID if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID != null) { string ListID14072 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName != null) { string FullName14073 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue(); } } if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef != null) { //Get value of ListID if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID != null) { string ListID14074 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName != null) { string FullName14075 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue(); } } if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef != null) { //Get value of ListID if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID != null) { string ListID14076 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName != null) { string FullName14077 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue(); } } } } } //Get value of ExternalGUID if (OR.ItemServiceRet.ExternalGUID != null) { string ExternalGUID14078 = (string)OR.ItemServiceRet.ExternalGUID.GetValue(); } if (OR.ItemServiceRet.DataExtRetList != null) { for (int i14079 = 0; i14079 < OR.ItemServiceRet.DataExtRetList.Count; i14079++) { IDataExtRet DataExtRet = OR.ItemServiceRet.DataExtRetList.GetAt(i14079); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14080 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14081 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14082 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14083 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemNonInventoryRet != null) { //Get value of ListID string ListID14084 = (string)OR.ItemNonInventoryRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14085 = (DateTime)OR.ItemNonInventoryRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14086 = (DateTime)OR.ItemNonInventoryRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14087 = (string)OR.ItemNonInventoryRet.EditSequence.GetValue(); //Get value of Name string Name14088 = (string)OR.ItemNonInventoryRet.Name.GetValue(); //Get value of FullName string FullName14089 = (string)OR.ItemNonInventoryRet.FullName.GetValue(); //Get value of BarCodeValue if (OR.ItemNonInventoryRet.BarCodeValue != null) { string BarCodeValue14090 = (string)OR.ItemNonInventoryRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemNonInventoryRet.IsActive != null) { bool IsActive14091 = (bool)OR.ItemNonInventoryRet.IsActive.GetValue(); } if (OR.ItemNonInventoryRet.ClassRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.ClassRef.ListID != null) { string ListID14092 = (string)OR.ItemNonInventoryRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.ClassRef.FullName != null) { string FullName14093 = (string)OR.ItemNonInventoryRet.ClassRef.FullName.GetValue(); } } if (OR.ItemNonInventoryRet.ParentRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.ParentRef.ListID != null) { string ListID14094 = (string)OR.ItemNonInventoryRet.ParentRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.ParentRef.FullName != null) { string FullName14095 = (string)OR.ItemNonInventoryRet.ParentRef.FullName.GetValue(); } } //Get value of Sublevel int Sublevel14096 = (int)OR.ItemNonInventoryRet.Sublevel.GetValue(); //Get value of ManufacturerPartNumber if (OR.ItemNonInventoryRet.ManufacturerPartNumber != null) { string ManufacturerPartNumber14097 = (string)OR.ItemNonInventoryRet.ManufacturerPartNumber.GetValue(); } if (OR.ItemNonInventoryRet.UnitOfMeasureSetRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID != null) { string ListID14098 = (string)OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName != null) { string FullName14099 = (string)OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName.GetValue(); } } //Get value of IsTaxIncluded if (OR.ItemNonInventoryRet.IsTaxIncluded != null) { bool IsTaxIncluded14100 = (bool)OR.ItemNonInventoryRet.IsTaxIncluded.GetValue(); } if (OR.ItemNonInventoryRet.SalesTaxCodeRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID != null) { string ListID14101 = (string)OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName != null) { string FullName14102 = (string)OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName.GetValue(); } } if (OR.ItemNonInventoryRet.ORSalesPurchase != null) { if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase != null) { if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase != null) { //Get value of Desc if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc != null) { string Desc14104 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue(); } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice != null) { if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null) { //Get value of Price if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null) { double Price14106 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue(); } } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null) { //Get value of PricePercent if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null) { double PricePercent14107 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue(); } } } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID != null) { string ListID14108 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName != null) { string FullName14109 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue(); } } } } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase != null) { if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase != null) { //Get value of SalesDesc if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc != null) { string SalesDesc14110 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue(); } //Get value of SalesPrice if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice != null) { double SalesPrice14111 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue(); } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID != null) { string ListID14112 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName != null) { string FullName14113 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue(); } } //Get value of PurchaseDesc if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc != null) { string PurchaseDesc14114 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue(); } //Get value of PurchaseCost if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost != null) { double PurchaseCost14115 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue(); } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID != null) { string ListID14116 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName != null) { string FullName14117 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue(); } } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID != null) { string ListID14118 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName != null) { string FullName14119 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue(); } } if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef != null) { //Get value of ListID if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID != null) { string ListID14120 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName != null) { string FullName14121 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue(); } } } } } //Get value of ExternalGUID if (OR.ItemNonInventoryRet.ExternalGUID != null) { string ExternalGUID14122 = (string)OR.ItemNonInventoryRet.ExternalGUID.GetValue(); } if (OR.ItemNonInventoryRet.DataExtRetList != null) { for (int i14123 = 0; i14123 < OR.ItemNonInventoryRet.DataExtRetList.Count; i14123++) { IDataExtRet DataExtRet = OR.ItemNonInventoryRet.DataExtRetList.GetAt(i14123); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14124 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14125 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14126 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14127 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemOtherChargeRet != null) { //Get value of ListID string ListID14128 = (string)OR.ItemOtherChargeRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14129 = (DateTime)OR.ItemOtherChargeRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14130 = (DateTime)OR.ItemOtherChargeRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14131 = (string)OR.ItemOtherChargeRet.EditSequence.GetValue(); //Get value of Name string Name14132 = (string)OR.ItemOtherChargeRet.Name.GetValue(); //Get value of FullName string FullName14133 = (string)OR.ItemOtherChargeRet.FullName.GetValue(); //Get value of BarCodeValue if (OR.ItemOtherChargeRet.BarCodeValue != null) { string BarCodeValue14134 = (string)OR.ItemOtherChargeRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemOtherChargeRet.IsActive != null) { bool IsActive14135 = (bool)OR.ItemOtherChargeRet.IsActive.GetValue(); } if (OR.ItemOtherChargeRet.ClassRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.ClassRef.ListID != null) { string ListID14136 = (string)OR.ItemOtherChargeRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.ClassRef.FullName != null) { string FullName14137 = (string)OR.ItemOtherChargeRet.ClassRef.FullName.GetValue(); } } if (OR.ItemOtherChargeRet.ParentRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.ParentRef.ListID != null) { string ListID14138 = (string)OR.ItemOtherChargeRet.ParentRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.ParentRef.FullName != null) { string FullName14139 = (string)OR.ItemOtherChargeRet.ParentRef.FullName.GetValue(); } } //Get value of Sublevel int Sublevel14140 = (int)OR.ItemOtherChargeRet.Sublevel.GetValue(); //Get value of IsTaxIncluded if (OR.ItemOtherChargeRet.IsTaxIncluded != null) { bool IsTaxIncluded14141 = (bool)OR.ItemOtherChargeRet.IsTaxIncluded.GetValue(); } if (OR.ItemOtherChargeRet.SalesTaxCodeRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID != null) { string ListID14142 = (string)OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName != null) { string FullName14143 = (string)OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName.GetValue(); } } if (OR.ItemOtherChargeRet.ORSalesPurchase != null) { if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase != null) { if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase != null) { //Get value of Desc if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc != null) { string Desc14145 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue(); } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice != null) { if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null) { //Get value of Price if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null) { double Price14147 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue(); } } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null) { //Get value of PricePercent if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null) { double PricePercent14148 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue(); } } } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID != null) { string ListID14149 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName != null) { string FullName14150 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue(); } } } } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase != null) { if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase != null) { //Get value of SalesDesc if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc != null) { string SalesDesc14151 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue(); } //Get value of SalesPrice if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice != null) { double SalesPrice14152 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue(); } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID != null) { string ListID14153 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName != null) { string FullName14154 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue(); } } //Get value of PurchaseDesc if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc != null) { string PurchaseDesc14155 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue(); } //Get value of PurchaseCost if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost != null) { double PurchaseCost14156 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue(); } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID != null) { string ListID14157 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName != null) { string FullName14158 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue(); } } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID != null) { string ListID14159 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName != null) { string FullName14160 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue(); } } if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef != null) { //Get value of ListID if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID != null) { string ListID14161 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName != null) { string FullName14162 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue(); } } } } } //Get value of SpecialItemType if (OR.ItemOtherChargeRet.SpecialItemType != null) { ENSpecialItemType SpecialItemType14163 = (ENSpecialItemType)OR.ItemOtherChargeRet.SpecialItemType.GetValue(); } //Get value of ExternalGUID if (OR.ItemOtherChargeRet.ExternalGUID != null) { string ExternalGUID14164 = (string)OR.ItemOtherChargeRet.ExternalGUID.GetValue(); } if (OR.ItemOtherChargeRet.DataExtRetList != null) { for (int i14165 = 0; i14165 < OR.ItemOtherChargeRet.DataExtRetList.Count; i14165++) { IDataExtRet DataExtRet = OR.ItemOtherChargeRet.DataExtRetList.GetAt(i14165); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14166 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14167 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14168 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14169 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemInventoryRet != null) { //Get value of ListID string ListID14170 = (string)OR.ItemInventoryRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14171 = (DateTime)OR.ItemInventoryRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14172 = (DateTime)OR.ItemInventoryRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14173 = (string)OR.ItemInventoryRet.EditSequence.GetValue(); //Get value of Name string Name14174 = (string)OR.ItemInventoryRet.Name.GetValue(); //Get value of FullName string FullName14175 = (string)OR.ItemInventoryRet.FullName.GetValue(); //Get value of BarCodeValue if (OR.ItemInventoryRet.BarCodeValue != null) { string BarCodeValue14176 = (string)OR.ItemInventoryRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemInventoryRet.IsActive != null) { bool IsActive14177 = (bool)OR.ItemInventoryRet.IsActive.GetValue(); } if (OR.ItemInventoryRet.ClassRef != null) { //Get value of ListID if (OR.ItemInventoryRet.ClassRef.ListID != null) { string ListID14178 = (string)OR.ItemInventoryRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.ClassRef.FullName != null) { string FullName14179 = (string)OR.ItemInventoryRet.ClassRef.FullName.GetValue(); } } if (OR.ItemInventoryRet.ParentRef != null) { //Get value of ListID if (OR.ItemInventoryRet.ParentRef.ListID != null) { string ListID14180 = (string)OR.ItemInventoryRet.ParentRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.ParentRef.FullName != null) { string FullName14181 = (string)OR.ItemInventoryRet.ParentRef.FullName.GetValue(); } } //Get value of Sublevel int Sublevel14182 = (int)OR.ItemInventoryRet.Sublevel.GetValue(); //Get value of ManufacturerPartNumber if (OR.ItemInventoryRet.ManufacturerPartNumber != null) { string ManufacturerPartNumber14183 = (string)OR.ItemInventoryRet.ManufacturerPartNumber.GetValue(); } if (OR.ItemInventoryRet.UnitOfMeasureSetRef != null) { //Get value of ListID if (OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID != null) { string ListID14184 = (string)OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName != null) { string FullName14185 = (string)OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName.GetValue(); } } //Get value of IsTaxIncluded if (OR.ItemInventoryRet.IsTaxIncluded != null) { bool IsTaxIncluded14186 = (bool)OR.ItemInventoryRet.IsTaxIncluded.GetValue(); } if (OR.ItemInventoryRet.SalesTaxCodeRef != null) { //Get value of ListID if (OR.ItemInventoryRet.SalesTaxCodeRef.ListID != null) { string ListID14187 = (string)OR.ItemInventoryRet.SalesTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.SalesTaxCodeRef.FullName != null) { string FullName14188 = (string)OR.ItemInventoryRet.SalesTaxCodeRef.FullName.GetValue(); } } //Get value of SalesDesc if (OR.ItemInventoryRet.SalesDesc != null) { string SalesDesc14189 = (string)OR.ItemInventoryRet.SalesDesc.GetValue(); } //Get value of SalesPrice if (OR.ItemInventoryRet.SalesPrice != null) { double SalesPrice14190 = (double)OR.ItemInventoryRet.SalesPrice.GetValue(); } if (OR.ItemInventoryRet.IncomeAccountRef != null) { //Get value of ListID if (OR.ItemInventoryRet.IncomeAccountRef.ListID != null) { string ListID14191 = (string)OR.ItemInventoryRet.IncomeAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.IncomeAccountRef.FullName != null) { string FullName14192 = (string)OR.ItemInventoryRet.IncomeAccountRef.FullName.GetValue(); } } //Get value of PurchaseDesc if (OR.ItemInventoryRet.PurchaseDesc != null) { string PurchaseDesc14193 = (string)OR.ItemInventoryRet.PurchaseDesc.GetValue(); } //Get value of PurchaseCost if (OR.ItemInventoryRet.PurchaseCost != null) { double PurchaseCost14194 = (double)OR.ItemInventoryRet.PurchaseCost.GetValue(); } if (OR.ItemInventoryRet.PurchaseTaxCodeRef != null) { //Get value of ListID if (OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID != null) { string ListID14195 = (string)OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName != null) { string FullName14196 = (string)OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName.GetValue(); } } if (OR.ItemInventoryRet.COGSAccountRef != null) { //Get value of ListID if (OR.ItemInventoryRet.COGSAccountRef.ListID != null) { string ListID14197 = (string)OR.ItemInventoryRet.COGSAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.COGSAccountRef.FullName != null) { string FullName14198 = (string)OR.ItemInventoryRet.COGSAccountRef.FullName.GetValue(); } } if (OR.ItemInventoryRet.PrefVendorRef != null) { //Get value of ListID if (OR.ItemInventoryRet.PrefVendorRef.ListID != null) { string ListID14199 = (string)OR.ItemInventoryRet.PrefVendorRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.PrefVendorRef.FullName != null) { string FullName14200 = (string)OR.ItemInventoryRet.PrefVendorRef.FullName.GetValue(); } } if (OR.ItemInventoryRet.AssetAccountRef != null) { //Get value of ListID if (OR.ItemInventoryRet.AssetAccountRef.ListID != null) { string ListID14201 = (string)OR.ItemInventoryRet.AssetAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryRet.AssetAccountRef.FullName != null) { string FullName14202 = (string)OR.ItemInventoryRet.AssetAccountRef.FullName.GetValue(); } } //Get value of ReorderPoint if (OR.ItemInventoryRet.ReorderPoint != null) { int ReorderPoint14203 = (int)OR.ItemInventoryRet.ReorderPoint.GetValue(); } //Get value of Max if (OR.ItemInventoryRet.Max != null) { int Max14204 = (int)OR.ItemInventoryRet.Max.GetValue(); } //Get value of QuantityOnHand if (OR.ItemInventoryRet.QuantityOnHand != null) { int QuantityOnHand14205 = (int)OR.ItemInventoryRet.QuantityOnHand.GetValue(); } //Get value of AverageCost if (OR.ItemInventoryRet.AverageCost != null) { double AverageCost14206 = (double)OR.ItemInventoryRet.AverageCost.GetValue(); } //Get value of QuantityOnOrder if (OR.ItemInventoryRet.QuantityOnOrder != null) { int QuantityOnOrder14207 = (int)OR.ItemInventoryRet.QuantityOnOrder.GetValue(); } //Get value of QuantityOnSalesOrder if (OR.ItemInventoryRet.QuantityOnSalesOrder != null) { int QuantityOnSalesOrder14208 = (int)OR.ItemInventoryRet.QuantityOnSalesOrder.GetValue(); } //Get value of ExternalGUID if (OR.ItemInventoryRet.ExternalGUID != null) { string ExternalGUID14209 = (string)OR.ItemInventoryRet.ExternalGUID.GetValue(); } if (OR.ItemInventoryRet.DataExtRetList != null) { for (int i14210 = 0; i14210 < OR.ItemInventoryRet.DataExtRetList.Count; i14210++) { IDataExtRet DataExtRet = OR.ItemInventoryRet.DataExtRetList.GetAt(i14210); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14211 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14212 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14213 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14214 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemInventoryAssemblyRet != null) { //Get value of ListID string ListID14215 = (string)OR.ItemInventoryAssemblyRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14216 = (DateTime)OR.ItemInventoryAssemblyRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14217 = (DateTime)OR.ItemInventoryAssemblyRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14218 = (string)OR.ItemInventoryAssemblyRet.EditSequence.GetValue(); //Get value of Name string Name14219 = (string)OR.ItemInventoryAssemblyRet.Name.GetValue(); //Get value of FullName string FullName14220 = (string)OR.ItemInventoryAssemblyRet.FullName.GetValue(); //Get value of BarCodeValue if (OR.ItemInventoryAssemblyRet.BarCodeValue != null) { string BarCodeValue14221 = (string)OR.ItemInventoryAssemblyRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemInventoryAssemblyRet.IsActive != null) { bool IsActive14222 = (bool)OR.ItemInventoryAssemblyRet.IsActive.GetValue(); } if (OR.ItemInventoryAssemblyRet.ClassRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.ClassRef.ListID != null) { string ListID14223 = (string)OR.ItemInventoryAssemblyRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.ClassRef.FullName != null) { string FullName14224 = (string)OR.ItemInventoryAssemblyRet.ClassRef.FullName.GetValue(); } } if (OR.ItemInventoryAssemblyRet.ParentRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.ParentRef.ListID != null) { string ListID14225 = (string)OR.ItemInventoryAssemblyRet.ParentRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.ParentRef.FullName != null) { string FullName14226 = (string)OR.ItemInventoryAssemblyRet.ParentRef.FullName.GetValue(); } } //Get value of Sublevel int Sublevel14227 = (int)OR.ItemInventoryAssemblyRet.Sublevel.GetValue(); //Get value of ManufacturerPartNumber if (OR.ItemInventoryAssemblyRet.ManufacturerPartNumber != null) { string ManufacturerPartNumber14228 = (string)OR.ItemInventoryAssemblyRet.ManufacturerPartNumber.GetValue(); } if (OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID != null) { string ListID14229 = (string)OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName != null) { string FullName14230 = (string)OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName.GetValue(); } } //Get value of IsTaxIncluded if (OR.ItemInventoryAssemblyRet.IsTaxIncluded != null) { bool IsTaxIncluded14231 = (bool)OR.ItemInventoryAssemblyRet.IsTaxIncluded.GetValue(); } if (OR.ItemInventoryAssemblyRet.SalesTaxCodeRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID != null) { string ListID14232 = (string)OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName != null) { string FullName14233 = (string)OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName.GetValue(); } } //Get value of SalesDesc if (OR.ItemInventoryAssemblyRet.SalesDesc != null) { string SalesDesc14234 = (string)OR.ItemInventoryAssemblyRet.SalesDesc.GetValue(); } //Get value of SalesPrice if (OR.ItemInventoryAssemblyRet.SalesPrice != null) { double SalesPrice14235 = (double)OR.ItemInventoryAssemblyRet.SalesPrice.GetValue(); } if (OR.ItemInventoryAssemblyRet.IncomeAccountRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID != null) { string ListID14236 = (string)OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName != null) { string FullName14237 = (string)OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName.GetValue(); } } //Get value of PurchaseDesc if (OR.ItemInventoryAssemblyRet.PurchaseDesc != null) { string PurchaseDesc14238 = (string)OR.ItemInventoryAssemblyRet.PurchaseDesc.GetValue(); } //Get value of PurchaseCost if (OR.ItemInventoryAssemblyRet.PurchaseCost != null) { double PurchaseCost14239 = (double)OR.ItemInventoryAssemblyRet.PurchaseCost.GetValue(); } if (OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID != null) { string ListID14240 = (string)OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName != null) { string FullName14241 = (string)OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName.GetValue(); } } if (OR.ItemInventoryAssemblyRet.COGSAccountRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID != null) { string ListID14242 = (string)OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName != null) { string FullName14243 = (string)OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName.GetValue(); } } if (OR.ItemInventoryAssemblyRet.PrefVendorRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID != null) { string ListID14244 = (string)OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName != null) { string FullName14245 = (string)OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName.GetValue(); } } if (OR.ItemInventoryAssemblyRet.AssetAccountRef != null) { //Get value of ListID if (OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID != null) { string ListID14246 = (string)OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName != null) { string FullName14247 = (string)OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName.GetValue(); } } //Get value of BuildPoint if (OR.ItemInventoryAssemblyRet.BuildPoint != null) { int BuildPoint14248 = (int)OR.ItemInventoryAssemblyRet.BuildPoint.GetValue(); } //Get value of Max if (OR.ItemInventoryAssemblyRet.Max != null) { int Max14249 = (int)OR.ItemInventoryAssemblyRet.Max.GetValue(); } //Get value of QuantityOnHand if (OR.ItemInventoryAssemblyRet.QuantityOnHand != null) { int QuantityOnHand14250 = (int)OR.ItemInventoryAssemblyRet.QuantityOnHand.GetValue(); } //Get value of AverageCost if (OR.ItemInventoryAssemblyRet.AverageCost != null) { double AverageCost14251 = (double)OR.ItemInventoryAssemblyRet.AverageCost.GetValue(); } //Get value of QuantityOnOrder if (OR.ItemInventoryAssemblyRet.QuantityOnOrder != null) { int QuantityOnOrder14252 = (int)OR.ItemInventoryAssemblyRet.QuantityOnOrder.GetValue(); } //Get value of QuantityOnSalesOrder if (OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder != null) { int QuantityOnSalesOrder14253 = (int)OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder.GetValue(); } //Get value of ExternalGUID if (OR.ItemInventoryAssemblyRet.ExternalGUID != null) { string ExternalGUID14254 = (string)OR.ItemInventoryAssemblyRet.ExternalGUID.GetValue(); } if (OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList != null) { for (int i14255 = 0; i14255 < OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.Count; i14255++) { IItemInventoryAssemblyLine ItemInventoryAssemblyLine = OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.GetAt(i14255); //Get value of ListID if (ItemInventoryAssemblyLine.ItemInventoryRef.ListID != null) { string ListID14256 = (string)ItemInventoryAssemblyLine.ItemInventoryRef.ListID.GetValue(); } //Get value of FullName if (ItemInventoryAssemblyLine.ItemInventoryRef.FullName != null) { string FullName14257 = (string)ItemInventoryAssemblyLine.ItemInventoryRef.FullName.GetValue(); } //Get value of Quantity if (ItemInventoryAssemblyLine.Quantity != null) { int Quantity14258 = (int)ItemInventoryAssemblyLine.Quantity.GetValue(); } } } if (OR.ItemInventoryAssemblyRet.DataExtRetList != null) { for (int i14259 = 0; i14259 < OR.ItemInventoryAssemblyRet.DataExtRetList.Count; i14259++) { IDataExtRet DataExtRet = OR.ItemInventoryAssemblyRet.DataExtRetList.GetAt(i14259); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14260 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14261 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14262 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14263 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemFixedAssetRet != null) { //Get value of ListID string ListID14264 = (string)OR.ItemFixedAssetRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14265 = (DateTime)OR.ItemFixedAssetRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14266 = (DateTime)OR.ItemFixedAssetRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14267 = (string)OR.ItemFixedAssetRet.EditSequence.GetValue(); //Get value of Name string Name14268 = (string)OR.ItemFixedAssetRet.Name.GetValue(); //Get value of BarCodeValue if (OR.ItemFixedAssetRet.BarCodeValue != null) { string BarCodeValue14269 = (string)OR.ItemFixedAssetRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemFixedAssetRet.IsActive != null) { bool IsActive14270 = (bool)OR.ItemFixedAssetRet.IsActive.GetValue(); } if (OR.ItemFixedAssetRet.ClassRef != null) { //Get value of ListID if (OR.ItemFixedAssetRet.ClassRef.ListID != null) { string ListID14271 = (string)OR.ItemFixedAssetRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemFixedAssetRet.ClassRef.FullName != null) { string FullName14272 = (string)OR.ItemFixedAssetRet.ClassRef.FullName.GetValue(); } } //Get value of AcquiredAs ENAcquiredAs AcquiredAs14273 = (ENAcquiredAs)OR.ItemFixedAssetRet.AcquiredAs.GetValue(); //Get value of PurchaseDesc string PurchaseDesc14274 = (string)OR.ItemFixedAssetRet.PurchaseDesc.GetValue(); //Get value of PurchaseDate DateTime PurchaseDate14275 = (DateTime)OR.ItemFixedAssetRet.PurchaseDate.GetValue(); //Get value of PurchaseCost if (OR.ItemFixedAssetRet.PurchaseCost != null) { double PurchaseCost14276 = (double)OR.ItemFixedAssetRet.PurchaseCost.GetValue(); } //Get value of VendorOrPayeeName if (OR.ItemFixedAssetRet.VendorOrPayeeName != null) { string VendorOrPayeeName14277 = (string)OR.ItemFixedAssetRet.VendorOrPayeeName.GetValue(); } if (OR.ItemFixedAssetRet.AssetAccountRef != null) { //Get value of ListID if (OR.ItemFixedAssetRet.AssetAccountRef.ListID != null) { string ListID14278 = (string)OR.ItemFixedAssetRet.AssetAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemFixedAssetRet.AssetAccountRef.FullName != null) { string FullName14279 = (string)OR.ItemFixedAssetRet.AssetAccountRef.FullName.GetValue(); } } if (OR.ItemFixedAssetRet.FixedAssetSalesInfo != null) { //Get value of SalesDesc string SalesDesc14280 = (string)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDesc.GetValue(); //Get value of SalesDate DateTime SalesDate14281 = (DateTime)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDate.GetValue(); //Get value of SalesPrice if (OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice != null) { double SalesPrice14282 = (double)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice.GetValue(); } //Get value of SalesExpense if (OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense != null) { double SalesExpense14283 = (double)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense.GetValue(); } } //Get value of AssetDesc if (OR.ItemFixedAssetRet.AssetDesc != null) { string AssetDesc14284 = (string)OR.ItemFixedAssetRet.AssetDesc.GetValue(); } //Get value of Location if (OR.ItemFixedAssetRet.Location != null) { string Location14285 = (string)OR.ItemFixedAssetRet.Location.GetValue(); } //Get value of PONumber if (OR.ItemFixedAssetRet.PONumber != null) { string PONumber14286 = (string)OR.ItemFixedAssetRet.PONumber.GetValue(); } //Get value of SerialNumber if (OR.ItemFixedAssetRet.SerialNumber != null) { string SerialNumber14287 = (string)OR.ItemFixedAssetRet.SerialNumber.GetValue(); } //Get value of WarrantyExpDate if (OR.ItemFixedAssetRet.WarrantyExpDate != null) { DateTime WarrantyExpDate14288 = (DateTime)OR.ItemFixedAssetRet.WarrantyExpDate.GetValue(); } //Get value of Notes if (OR.ItemFixedAssetRet.Notes != null) { string Notes14289 = (string)OR.ItemFixedAssetRet.Notes.GetValue(); } //Get value of AssetNumber if (OR.ItemFixedAssetRet.AssetNumber != null) { string AssetNumber14290 = (string)OR.ItemFixedAssetRet.AssetNumber.GetValue(); } //Get value of CostBasis if (OR.ItemFixedAssetRet.CostBasis != null) { double CostBasis14291 = (double)OR.ItemFixedAssetRet.CostBasis.GetValue(); } //Get value of YearEndAccumulatedDepreciation if (OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation != null) { double YearEndAccumulatedDepreciation14292 = (double)OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation.GetValue(); } //Get value of YearEndBookValue if (OR.ItemFixedAssetRet.YearEndBookValue != null) { double YearEndBookValue14293 = (double)OR.ItemFixedAssetRet.YearEndBookValue.GetValue(); } //Get value of ExternalGUID if (OR.ItemFixedAssetRet.ExternalGUID != null) { string ExternalGUID14294 = (string)OR.ItemFixedAssetRet.ExternalGUID.GetValue(); } if (OR.ItemFixedAssetRet.DataExtRetList != null) { for (int i14295 = 0; i14295 < OR.ItemFixedAssetRet.DataExtRetList.Count; i14295++) { IDataExtRet DataExtRet = OR.ItemFixedAssetRet.DataExtRetList.GetAt(i14295); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14296 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14297 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14298 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14299 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemSubtotalRet != null) { //Get value of ListID string ListID14300 = (string)OR.ItemSubtotalRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14301 = (DateTime)OR.ItemSubtotalRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14302 = (DateTime)OR.ItemSubtotalRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14303 = (string)OR.ItemSubtotalRet.EditSequence.GetValue(); //Get value of Name string Name14304 = (string)OR.ItemSubtotalRet.Name.GetValue(); //Get value of BarCodeValue if (OR.ItemSubtotalRet.BarCodeValue != null) { string BarCodeValue14305 = (string)OR.ItemSubtotalRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemSubtotalRet.IsActive != null) { bool IsActive14306 = (bool)OR.ItemSubtotalRet.IsActive.GetValue(); } //Get value of ItemDesc if (OR.ItemSubtotalRet.ItemDesc != null) { string ItemDesc14307 = (string)OR.ItemSubtotalRet.ItemDesc.GetValue(); } //Get value of SpecialItemType if (OR.ItemSubtotalRet.SpecialItemType != null) { ENSpecialItemType SpecialItemType14308 = (ENSpecialItemType)OR.ItemSubtotalRet.SpecialItemType.GetValue(); } //Get value of ExternalGUID if (OR.ItemSubtotalRet.ExternalGUID != null) { string ExternalGUID14309 = (string)OR.ItemSubtotalRet.ExternalGUID.GetValue(); } if (OR.ItemSubtotalRet.DataExtRetList != null) { for (int i14310 = 0; i14310 < OR.ItemSubtotalRet.DataExtRetList.Count; i14310++) { IDataExtRet DataExtRet = OR.ItemSubtotalRet.DataExtRetList.GetAt(i14310); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14311 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14312 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14313 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14314 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemDiscountRet != null) { //Get value of ListID string ListID14315 = (string)OR.ItemDiscountRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14316 = (DateTime)OR.ItemDiscountRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14317 = (DateTime)OR.ItemDiscountRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14318 = (string)OR.ItemDiscountRet.EditSequence.GetValue(); //Get value of Name string Name14319 = (string)OR.ItemDiscountRet.Name.GetValue(); //Get value of FullName string FullName14320 = (string)OR.ItemDiscountRet.FullName.GetValue(); //Get value of BarCodeValue if (OR.ItemDiscountRet.BarCodeValue != null) { string BarCodeValue14321 = (string)OR.ItemDiscountRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemDiscountRet.IsActive != null) { bool IsActive14322 = (bool)OR.ItemDiscountRet.IsActive.GetValue(); } if (OR.ItemDiscountRet.ClassRef != null) { //Get value of ListID if (OR.ItemDiscountRet.ClassRef.ListID != null) { string ListID14323 = (string)OR.ItemDiscountRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemDiscountRet.ClassRef.FullName != null) { string FullName14324 = (string)OR.ItemDiscountRet.ClassRef.FullName.GetValue(); } } if (OR.ItemDiscountRet.ParentRef != null) { //Get value of ListID if (OR.ItemDiscountRet.ParentRef.ListID != null) { string ListID14325 = (string)OR.ItemDiscountRet.ParentRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemDiscountRet.ParentRef.FullName != null) { string FullName14326 = (string)OR.ItemDiscountRet.ParentRef.FullName.GetValue(); } } //Get value of Sublevel int Sublevel14327 = (int)OR.ItemDiscountRet.Sublevel.GetValue(); //Get value of ItemDesc if (OR.ItemDiscountRet.ItemDesc != null) { string ItemDesc14328 = (string)OR.ItemDiscountRet.ItemDesc.GetValue(); } if (OR.ItemDiscountRet.SalesTaxCodeRef != null) { //Get value of ListID if (OR.ItemDiscountRet.SalesTaxCodeRef.ListID != null) { string ListID14329 = (string)OR.ItemDiscountRet.SalesTaxCodeRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemDiscountRet.SalesTaxCodeRef.FullName != null) { string FullName14330 = (string)OR.ItemDiscountRet.SalesTaxCodeRef.FullName.GetValue(); } } if (OR.ItemDiscountRet.ORDiscountRate != null) { if (OR.ItemDiscountRet.ORDiscountRate.DiscountRate != null) { //Get value of DiscountRate if (OR.ItemDiscountRet.ORDiscountRate.DiscountRate != null) { double DiscountRate14332 = (double)OR.ItemDiscountRet.ORDiscountRate.DiscountRate.GetValue(); } } if (OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent != null) { //Get value of DiscountRatePercent if (OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent != null) { double DiscountRatePercent14333 = (double)OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent.GetValue(); } } } if (OR.ItemDiscountRet.AccountRef != null) { //Get value of ListID if (OR.ItemDiscountRet.AccountRef.ListID != null) { string ListID14334 = (string)OR.ItemDiscountRet.AccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemDiscountRet.AccountRef.FullName != null) { string FullName14335 = (string)OR.ItemDiscountRet.AccountRef.FullName.GetValue(); } } //Get value of ExternalGUID if (OR.ItemDiscountRet.ExternalGUID != null) { string ExternalGUID14336 = (string)OR.ItemDiscountRet.ExternalGUID.GetValue(); } if (OR.ItemDiscountRet.DataExtRetList != null) { for (int i14337 = 0; i14337 < OR.ItemDiscountRet.DataExtRetList.Count; i14337++) { IDataExtRet DataExtRet = OR.ItemDiscountRet.DataExtRetList.GetAt(i14337); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14338 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14339 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14340 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14341 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemPaymentRet != null) { //Get value of ListID string ListID14342 = (string)OR.ItemPaymentRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14343 = (DateTime)OR.ItemPaymentRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14344 = (DateTime)OR.ItemPaymentRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14345 = (string)OR.ItemPaymentRet.EditSequence.GetValue(); //Get value of Name string Name14346 = (string)OR.ItemPaymentRet.Name.GetValue(); //Get value of BarCodeValue if (OR.ItemPaymentRet.BarCodeValue != null) { string BarCodeValue14347 = (string)OR.ItemPaymentRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemPaymentRet.IsActive != null) { bool IsActive14348 = (bool)OR.ItemPaymentRet.IsActive.GetValue(); } if (OR.ItemPaymentRet.ClassRef != null) { //Get value of ListID if (OR.ItemPaymentRet.ClassRef.ListID != null) { string ListID14349 = (string)OR.ItemPaymentRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemPaymentRet.ClassRef.FullName != null) { string FullName14350 = (string)OR.ItemPaymentRet.ClassRef.FullName.GetValue(); } } //Get value of ItemDesc if (OR.ItemPaymentRet.ItemDesc != null) { string ItemDesc14351 = (string)OR.ItemPaymentRet.ItemDesc.GetValue(); } if (OR.ItemPaymentRet.DepositToAccountRef != null) { //Get value of ListID if (OR.ItemPaymentRet.DepositToAccountRef.ListID != null) { string ListID14352 = (string)OR.ItemPaymentRet.DepositToAccountRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemPaymentRet.DepositToAccountRef.FullName != null) { string FullName14353 = (string)OR.ItemPaymentRet.DepositToAccountRef.FullName.GetValue(); } } if (OR.ItemPaymentRet.PaymentMethodRef != null) { //Get value of ListID if (OR.ItemPaymentRet.PaymentMethodRef.ListID != null) { string ListID14354 = (string)OR.ItemPaymentRet.PaymentMethodRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemPaymentRet.PaymentMethodRef.FullName != null) { string FullName14355 = (string)OR.ItemPaymentRet.PaymentMethodRef.FullName.GetValue(); } } //Get value of ExternalGUID if (OR.ItemPaymentRet.ExternalGUID != null) { string ExternalGUID14356 = (string)OR.ItemPaymentRet.ExternalGUID.GetValue(); } if (OR.ItemPaymentRet.DataExtRetList != null) { for (int i14357 = 0; i14357 < OR.ItemPaymentRet.DataExtRetList.Count; i14357++) { IDataExtRet DataExtRet = OR.ItemPaymentRet.DataExtRetList.GetAt(i14357); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14358 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14359 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14360 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14361 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemSalesTaxRet != null) { //Get value of ListID string ListID14362 = (string)OR.ItemSalesTaxRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14363 = (DateTime)OR.ItemSalesTaxRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14364 = (DateTime)OR.ItemSalesTaxRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14365 = (string)OR.ItemSalesTaxRet.EditSequence.GetValue(); //Get value of Name string Name14366 = (string)OR.ItemSalesTaxRet.Name.GetValue(); //Get value of BarCodeValue if (OR.ItemSalesTaxRet.BarCodeValue != null) { string BarCodeValue14367 = (string)OR.ItemSalesTaxRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemSalesTaxRet.IsActive != null) { bool IsActive14368 = (bool)OR.ItemSalesTaxRet.IsActive.GetValue(); } if (OR.ItemSalesTaxRet.ClassRef != null) { //Get value of ListID if (OR.ItemSalesTaxRet.ClassRef.ListID != null) { string ListID14369 = (string)OR.ItemSalesTaxRet.ClassRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemSalesTaxRet.ClassRef.FullName != null) { string FullName14370 = (string)OR.ItemSalesTaxRet.ClassRef.FullName.GetValue(); } } //Get value of ItemDesc if (OR.ItemSalesTaxRet.ItemDesc != null) { string ItemDesc14371 = (string)OR.ItemSalesTaxRet.ItemDesc.GetValue(); } //Get value of TaxRate if (OR.ItemSalesTaxRet.TaxRate != null) { double TaxRate14372 = (double)OR.ItemSalesTaxRet.TaxRate.GetValue(); } if (OR.ItemSalesTaxRet.TaxVendorRef != null) { //Get value of ListID if (OR.ItemSalesTaxRet.TaxVendorRef.ListID != null) { string ListID14373 = (string)OR.ItemSalesTaxRet.TaxVendorRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemSalesTaxRet.TaxVendorRef.FullName != null) { string FullName14374 = (string)OR.ItemSalesTaxRet.TaxVendorRef.FullName.GetValue(); } } if (OR.ItemSalesTaxRet.SalesTaxReturnLineRef != null) { //Get value of ListID if (OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID != null) { string ListID14375 = (string)OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName != null) { string FullName14376 = (string)OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName.GetValue(); } } //Get value of ExternalGUID if (OR.ItemSalesTaxRet.ExternalGUID != null) { string ExternalGUID14377 = (string)OR.ItemSalesTaxRet.ExternalGUID.GetValue(); } if (OR.ItemSalesTaxRet.DataExtRetList != null) { for (int i14378 = 0; i14378 < OR.ItemSalesTaxRet.DataExtRetList.Count; i14378++) { IDataExtRet DataExtRet = OR.ItemSalesTaxRet.DataExtRetList.GetAt(i14378); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14379 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14380 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14381 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14382 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemSalesTaxGroupRet != null) { //Get value of ListID string ListID14383 = (string)OR.ItemSalesTaxGroupRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14384 = (DateTime)OR.ItemSalesTaxGroupRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14385 = (DateTime)OR.ItemSalesTaxGroupRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14386 = (string)OR.ItemSalesTaxGroupRet.EditSequence.GetValue(); //Get value of Name string Name14387 = (string)OR.ItemSalesTaxGroupRet.Name.GetValue(); //Get value of BarCodeValue if (OR.ItemSalesTaxGroupRet.BarCodeValue != null) { string BarCodeValue14388 = (string)OR.ItemSalesTaxGroupRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemSalesTaxGroupRet.IsActive != null) { bool IsActive14389 = (bool)OR.ItemSalesTaxGroupRet.IsActive.GetValue(); } //Get value of ItemDesc if (OR.ItemSalesTaxGroupRet.ItemDesc != null) { string ItemDesc14390 = (string)OR.ItemSalesTaxGroupRet.ItemDesc.GetValue(); } //Get value of ExternalGUID if (OR.ItemSalesTaxGroupRet.ExternalGUID != null) { string ExternalGUID14391 = (string)OR.ItemSalesTaxGroupRet.ExternalGUID.GetValue(); } if (OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList != null) { for (int i14392 = 0; i14392 < OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.Count; i14392++) { IQBBaseRef QBBaseRef = OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.GetAt(i14392); //Get value of ListID if (QBBaseRef.ListID != null) { string ListID14393 = (string)QBBaseRef.ListID.GetValue(); } //Get value of FullName if (QBBaseRef.FullName != null) { string FullName14394 = (string)QBBaseRef.FullName.GetValue(); } } } if (OR.ItemSalesTaxGroupRet.DataExtRetList != null) { for (int i14395 = 0; i14395 < OR.ItemSalesTaxGroupRet.DataExtRetList.Count; i14395++) { IDataExtRet DataExtRet = OR.ItemSalesTaxGroupRet.DataExtRetList.GetAt(i14395); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14396 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14397 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14398 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14399 = (string)DataExtRet.DataExtValue.GetValue(); } } } if (OR.ItemGroupRet != null) { //Get value of ListID string ListID14400 = (string)OR.ItemGroupRet.ListID.GetValue(); //Get value of TimeCreated DateTime TimeCreated14401 = (DateTime)OR.ItemGroupRet.TimeCreated.GetValue(); //Get value of TimeModified DateTime TimeModified14402 = (DateTime)OR.ItemGroupRet.TimeModified.GetValue(); //Get value of EditSequence string EditSequence14403 = (string)OR.ItemGroupRet.EditSequence.GetValue(); //Get value of Name string Name14404 = (string)OR.ItemGroupRet.Name.GetValue(); //Get value of BarCodeValue if (OR.ItemGroupRet.BarCodeValue != null) { string BarCodeValue14405 = (string)OR.ItemGroupRet.BarCodeValue.GetValue(); } //Get value of IsActive if (OR.ItemGroupRet.IsActive != null) { bool IsActive14406 = (bool)OR.ItemGroupRet.IsActive.GetValue(); } //Get value of ItemDesc if (OR.ItemGroupRet.ItemDesc != null) { string ItemDesc14407 = (string)OR.ItemGroupRet.ItemDesc.GetValue(); } if (OR.ItemGroupRet.UnitOfMeasureSetRef != null) { //Get value of ListID if (OR.ItemGroupRet.UnitOfMeasureSetRef.ListID != null) { string ListID14408 = (string)OR.ItemGroupRet.UnitOfMeasureSetRef.ListID.GetValue(); } //Get value of FullName if (OR.ItemGroupRet.UnitOfMeasureSetRef.FullName != null) { string FullName14409 = (string)OR.ItemGroupRet.UnitOfMeasureSetRef.FullName.GetValue(); } } //Get value of IsPrintItemsInGroup if (OR.ItemGroupRet.IsPrintItemsInGroup != null) { bool IsPrintItemsInGroup14410 = (bool)OR.ItemGroupRet.IsPrintItemsInGroup.GetValue(); } //Get value of SpecialItemType if (OR.ItemGroupRet.SpecialItemType != null) { ENSpecialItemType SpecialItemType14411 = (ENSpecialItemType)OR.ItemGroupRet.SpecialItemType.GetValue(); } //Get value of ExternalGUID if (OR.ItemGroupRet.ExternalGUID != null) { string ExternalGUID14412 = (string)OR.ItemGroupRet.ExternalGUID.GetValue(); } if (OR.ItemGroupRet.ItemGroupLineList != null) { for (int i14413 = 0; i14413 < OR.ItemGroupRet.ItemGroupLineList.Count; i14413++) { IItemGroupLine ItemGroupLine = OR.ItemGroupRet.ItemGroupLineList.GetAt(i14413); if (ItemGroupLine.ItemRef != null) { //Get value of ListID if (ItemGroupLine.ItemRef.ListID != null) { string ListID14414 = (string)ItemGroupLine.ItemRef.ListID.GetValue(); } //Get value of FullName if (ItemGroupLine.ItemRef.FullName != null) { string FullName14415 = (string)ItemGroupLine.ItemRef.FullName.GetValue(); } } //Get value of Quantity if (ItemGroupLine.Quantity != null) { int Quantity14416 = (int)ItemGroupLine.Quantity.GetValue(); } //Get value of UnitOfMeasure if (ItemGroupLine.UnitOfMeasure != null) { string UnitOfMeasure14417 = (string)ItemGroupLine.UnitOfMeasure.GetValue(); } } } if (OR.ItemGroupRet.DataExtRetList != null) { for (int i14418 = 0; i14418 < OR.ItemGroupRet.DataExtRetList.Count; i14418++) { IDataExtRet DataExtRet = OR.ItemGroupRet.DataExtRetList.GetAt(i14418); //Get value of OwnerID if (DataExtRet.OwnerID != null) { string OwnerID14419 = (string)DataExtRet.OwnerID.GetValue(); } //Get value of DataExtName string DataExtName14420 = (string)DataExtRet.DataExtName.GetValue(); //Get value of DataExtType ENDataExtType DataExtType14421 = (ENDataExtType)DataExtRet.DataExtType.GetValue(); //Get value of DataExtValue string DataExtValue14422 = (string)DataExtRet.DataExtValue.GetValue(); } } } } } } |