dolibarr.stundenzettel/sql/llx_product_services.sql
2026-02-07 21:14:51 +01:00

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;