QuickBooks Integrator 2020 Python Edition

Questions / Feedback?

inventory_total_value Property

The total value of this inventory item.

Syntax

def get_inventory_total_value() -> str: ...
def set_inventory_total_value(value: str) -> None: ...

inventory_total_value = property(get_inventory_total_value, set_inventory_total_value)

Default Value

"0"

Remarks

The total dollar value for the number of items specified by inventory_quantity_on_hand. If inventory_total_value is included, inventory_quantity_on_hand must be non-zero.

If both inventory_quantity_on_hand and purchase_cost are included, then total value in QuickBooks will be set to inventory_quantity_on_hand times purchase_cost, regardless of what inventory_total_value is explicitly set to (ie: The contents of inventory_total_value are ignored).

Please note that this is a write-only property, and it's value will not be returned after a get. add, or modify.

This property is only applicable for Inventory Items (item_type = itInventory).

The amount should be formatted as a string in dollars.

Copyright (c) 2021 /n software inc. - All rights reserved.
QuickBooks Integrator 2020 Python Edition - Version 20.0 [Build 7941]