9 lines
447 B
SQL
9 lines
447 B
SQL
-- ============================================================================
|
|
-- View for services only (fk_product_type = 1)
|
|
-- Used for the "Standard-Leistung" extrafield dropdown on customers
|
|
-- ============================================================================
|
|
|
|
CREATE OR REPLACE VIEW llx_product_services AS
|
|
SELECT rowid, ref, label, description, fk_product_type, entity, tosell, tobuy
|
|
FROM llx_product
|
|
WHERE fk_product_type = 1;
|