QuickBooks Integrator 2020 Python Edition

Questions / Feedback?

item_markup_rate_percent Property

The markup that will be passed on to the customer for this item on this estimate.

Syntax

def get_item_markup_rate_percent(item_index: int) -> str: ...
def set_item_markup_rate_percent(item_index: int, value: str) -> None: ...

Default Value

""

Remarks

The markup that will be passed on to the customer for this item on this estimate. Amount, quantity, rate, and markup are related in the following way: item_amount = (item_quantity * item_rate) + item_markup_rate.

If item_markup_rate_percent is specified instead of item_markup_rate, then this line item represents a percentage markup or discount, to be applied to the previous Item or Item group.

item_markup_rate_percent should be formatted as a positive or negative percentage; a positive value indicates a markup, and both integer and floating point values are supported as string representations.

Only one of item_markup_rate_percent and item_markup_rate may be specified. If item_markup_rate_percent is set, then item_markup_rate will be set to its default (and vice-versa).

The item_index parameter specifies the index of the item in the array. The size of the array is controlled by the item_count property.

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