2
0
forked from Wavyzz/dolibarr

Merge pull request #18182 from atm-jpb/NEW_field_in_service_object

NEW : field and behavior in product object
This commit is contained in:
Laurent Destailleur
2021-09-23 12:14:09 +02:00
committed by GitHub
13 changed files with 196 additions and 8 deletions

View File

@@ -103,6 +103,9 @@ create table llx_product
desiredstock float DEFAULT 0,
fk_unit integer DEFAULT NULL,
price_autogen tinyint DEFAULT 0,
fk_project integer DEFAULT NULL, -- Used when product was generated by a project or is specifif to a project
mandatory_period tinyint DEFAULT 0 -- is used to signal to the user that the start and end dates are mandatory for this type of product the fk_product_type == 1 (service) (non-blocking action)
fk_default_bom integer DEFAULT NULL,
fk_project integer DEFAULT NULL -- Used when the product was generated by a project or is specific to a project
)ENGINE=innodb;