Type : transactions.stock_detail_type

Schema transactions
Type Name stock_detail_type
Base Type -
Owner postgres
Collation
Default
Type Composite Type
Store Type Compressed Inline/Seconary
Not Null False
Description
Type Definition:
CREATE TYPE transactions.stock_detail_type AS
(
    store_id integer,
    item_code character varying(16),
    quantity integer_strict,
    unit_name character varying(54),
    price money_strict,
    discount money_strict2,
    shipping_charge money_strict2,
    tax_form character varying(28),
    tax money_strict2
);