View: office.store_selector_view

Schema office
Materialized View Name store_selector_view
Owner postgres
Tablespace DEFAULT
Description
 CREATE OR REPLACE VIEW office.store_selector_view
 AS
 SELECT stores.store_id,
    stores.office_id,
    stores.store_code,
    stores.store_name,
    stores.address,
    stores.store_type_id,
    stores.allow_sales,
    stores.sales_tax_id,
    stores.default_cash_account_id,
    stores.default_cash_repository_id,
    stores.audit_user_id,
    stores.audit_ts
   FROM office.stores;