TenderMainItem
No description
type TenderMainItem implements ITenderBaseItem {
id: Int!
productId: Int!
product: Product
orderItemId: Int
name: String!
sku: String!
quantity: Int!
supplier: String!
supplierCode: String!
price: Float!
priceNet: Float!
totalPrice: Float!
totalPriceNet: Float!
taxCode: Taxcode!
taxPercentage: Int!
customerDiscountPercentage: Float!
discountPercentage: Float!
totalDiscountPercentage: Float!
marginAmount: Float!
marginPercentage: Float!
saleMarginAmount: Float!
saleMarginPercentage: Float!
attributedSaleDiscount: Float!
attributedSaleMargin: Float!
originalPrice: Float!
costPrice: Float!
customerPrice: Float!
valuePoints: Int
expectedDeliveryDate: DateTime
externalOrderitemId: String
notes: String!
type: TenderOrderItemType!
childItems: [ITenderBaseItem!]
sum: Float!
sumNet: Float!
totalSum: Float!
totalSumNet: Float!
discountPercentageSum: Float!
totalDiscountPercentageSum: Float!
saleMarginAmountSum: Float!
saleMarginPercentageSum: Float!
attributedSaleDiscountSum: Float!
attributedSaleMarginSum: Float!
}
Fields
TenderMainItem.id ● Int! non-null scalar
Id of the tender item, this id can be used for update or delete mutation for this tender item
TenderMainItem.productId ● Int! non-null scalar
The tender/order item's productId, if applicable
TenderMainItem.product ● Product object
TenderMainItem.orderItemId ● Int scalar
Id of the order item
TenderMainItem.name ● String! non-null scalar
Tender/order item name
TenderMainItem.sku ● String! non-null scalar
Tender/order item SKU
TenderMainItem.quantity ● Int! non-null scalar
The quantity for this tender/order item
TenderMainItem.supplier ● String! non-null scalar
Tender/order item supplier
TenderMainItem.supplierCode ● String! non-null scalar
Tender/order item supplier code
TenderMainItem.price ● Float! non-null scalar
The gross sales price per UOM of this tender/order item, no item specific incentives and extra costs are applied to this price. VAT excluding
TenderMainItem.priceNet ● Float! non-null scalar
The sales price per UOM of this tender/order item, no item specific incentives and extra costs are applied to this price. VAT including
TenderMainItem.totalPrice ● Float! non-null scalar
The total gross price of this tender/order item, no item specific incentives and extra costs are applied to this price. VAT excluding
TenderMainItem.totalPriceNet ● Float! non-null scalar
The total price of this tender/order item, no item specific incentives and extra costs are applied to this price. VAT including
TenderMainItem.taxCode ● Taxcode! non-null enum
The tax code for this tender/order item
TenderMainItem.taxPercentage ● Int! non-null scalar
The tax percentage for this tender/order item
TenderMainItem.customerDiscountPercentage ● Float! non-null scalar
Customer discount (%)
TenderMainItem.discountPercentage ● Float! non-null scalar
Sales discount (%)
TenderMainItem.totalDiscountPercentage ● Float! non-null scalar
Total discount (%)
TenderMainItem.marginAmount ● Float! non-null scalar
Default margin amount (list price). VAT excluding
TenderMainItem.marginPercentage ● Float! non-null scalar
Default margin percentage (list price)
TenderMainItem.saleMarginAmount ● Float! non-null scalar
Margin amount. VAT excluding
TenderMainItem.saleMarginPercentage ● Float! non-null scalar
Margin percentage
TenderMainItem.attributedSaleDiscount ● Float! non-null scalar
Extra item discount (%) calculated based on tender/order total discount
TenderMainItem.attributedSaleMargin ● Float! non-null scalar
Margin percentage calculated based on tender/order total discount
TenderMainItem.originalPrice ● Float! non-null scalar
Product list price per UOM of this tender/order item. VAT excluding
TenderMainItem.costPrice ● Float! non-null scalar
Product cost price per UOM of this tender/order item. VAT excluding
TenderMainItem.customerPrice ● Float! non-null scalar
Customer special price per UOM of this tender/order item. VAT excluding
TenderMainItem.valuePoints ● Int scalar
Total amount of valuePoints that apply to this tender/order item
TenderMainItem.expectedDeliveryDate ● DateTime scalar
The preferred delivery date for this order as requested by the user
TenderMainItem.externalOrderitemId ● String scalar
The order item's ID in an external system
TenderMainItem.notes ● String! non-null scalar
User notes on tender item level
TenderMainItem.type ● TenderOrderItemType! non-null enum
Order item type
TenderMainItem.childItems ● [ITenderBaseItem!] list interface
The tender/order item's child items. E.g. surcharges, incentives, etc.
TenderMainItem.sum ● Float! non-null scalar
The gross price per UOM of this tender/order item, with item specific incentives and extra costs applied to this price. VAT excluding
TenderMainItem.sumNet ● Float! non-null scalar
The price per UOM of this tender/order item, with item specific incentives and extra costs applied to this price. VAT including
TenderMainItem.totalSum ● Float! non-null scalar
The total gross price of this tender/order item, with item specific incentives and extra costs applied to this price. VAT excluding
TenderMainItem.totalSumNet ● Float! non-null scalar
The total price of this tender/order item, with item specific incentives and extra costs applied to this price. VAT including
TenderMainItem.discountPercentageSum ● Float! non-null scalar
Sales discount (%). Includes item specific incentives and extra costs
TenderMainItem.totalDiscountPercentageSum ● Float! non-null scalar
Total discount (%). Includes item specific incentives and extra costs
TenderMainItem.saleMarginAmountSum ● Float! non-null scalar
Margin amount. Includes item specific incentives and extra costs. VAT excluding
TenderMainItem.saleMarginPercentageSum ● Float! non-null scalar
Margin percentage. Includes item specific incentives and extra costs
TenderMainItem.attributedSaleDiscountSum ● Float! non-null scalar
Extra item discount (%) calculated based on tender/order total discount. Includes item specific incentives and extra costs
TenderMainItem.attributedSaleMarginSum ● Float! non-null scalar
Margin percentage calculated based on tender/order total discount. Includes item specific incentives and extra costs
Interfaces
ITenderBaseItem interface
Interface for the TenderBaseItem Type, where both TenderBaseItem and TenderMainItem derive from
Member Of
Tender object