Current section

Files

Jump to
erp include product.hrl
Raw

include/product.hrl

-ifndef(PRODUCT_HRL).
-define(PRODUCT_HRL, true).
-include("organization.hrl").
-type productType() :: virtual | physical.
-record('Product', { code = [] :: [] | term(),
id = kvs:seq([],[]) :: [] | binary(),
url = [] :: [] | binary() | list(),
engineer = [] :: [] | #'Person'{},
director = [] :: [] | #'Person'{},
owner = [] :: [] | #'Person'{},
organization = [] :: [] | #'Organization'{},
type = [] :: productType() }).
-endif.