ItemCustomPrice Property
Fixed price for this item.
Syntax
pricelevel.getItemCustomPrice(index, [callback]) pricelevel.setItemCustomPrice(index, itemCustomPrice, [callback])
Default Value
""
Callback
The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).
The callback for the getItemCustomPrice([callback]) method is defined as:
function(err, data){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'data' is the value returned by the method.
The callback for the setItemCustomPrice([callback]) method is defined as:
function(err){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'err' has 2 properties which hold detailed information:
err.code err.message
Remarks
Fixed price for this item.
When you create a price level, you have the option to create it with a custom price that is either a fixed amount (ItemCustomPrice) or a fixed discount percentage (ItemCustomPricePercent).
Alternatively, instead of a flat custom price or discount, you could apply a price discount based on either the current custom price, the standard price of the item, or the cost of the item.
When you create a price level, you must specify whether it is a FixedPercentage or a per item price level. Once you create the price level, you cannot change this. Currently, only QuickBooks Premier and Enterprise support the per item price level.
The amount should be formatted as a string in dollars.
If the ItemCustomPrice property is left empty, no custom price will be sent to QuickBooks.
The size of the array is controlled by the ItemCount property.
This property is not available at design time.
Data Type
String