PurchasingItem

data class PurchasingItem constructor(val itemCode: ItemCode, val price: Double? = null, val quantity: Int? = null)

アイテム情報

Parameters

itemCode

アイテムコード

price

単価

quantity

数量

Throws

itemCodeが空または空白の場合またはpriceまたはquantityが負数の場合にスローされる

Constructors

Link copied to clipboard
fun PurchasingItem(itemCode: ItemCode, price: Double? = null, quantity: Int? = null)

Properties

Link copied to clipboard

アイテムコード

Link copied to clipboard
val price: Double? = null

単価

Link copied to clipboard
val quantity: Int? = null

数量