QuickBooks Integrator 2020 Python Edition

Questions / Feedback?

item_markup_rate Property

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

Syntax

def get_item_markup_rate(item_index: int) -> str: ...
def set_item_markup_rate(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 should be formatted as a positive or negative dollar amount (including decimal). A positive value indicates a markup and a negative amount a discount.

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 amount should be formatted as a string in dollars.

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]