totalize method

Item totalize()

Totalize item price by quantity

@return

Implementation

Item totalize() {
	total = price * qty;

	return this;
}