You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.5 KiB
JSON

{
"id" : "COMMODITY",
"name" : {
"default" : "Commodity",
"CZ" : "Zboží"
},
"descriptoin" : {
"default" : "",
"CZ" : ""
},
"schemaVersion" : 2,
"sql" : [
"CREATE TABLE \"CommodityTypeData\" (
\"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
\"name\" TEXT NULL);
CREATE TABLE \"CommodityData\" (
\"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
\"name\" TEXT NULL,
\"shortName\" TEXT NULL,
\"code\" TEXT NULL,
\"type\" INTEGER NULL,
\"price\" INTEGER NOT NULL,
\"vat\" INTEGER NOT NULL,
\"count\" INTEGER NOT NULL,
CONSTRAINT \"type_fk\"
FOREIGN KEY (\"type\")
REFERENCES \"CommodityTypeData\" (\"id\")
DEFERRABLE INITIALLY DEFERRED);
",
"
ALTER TABLE \"CommodityTypeData\" ADD \"color\" TEXT NULL;
ALTER TABLE \"CommodityData\" ADD \"favorite\" INTEGER NULL;
UPDATE \"CommodityData\" SET \"favorite\"=0;
"
],
"dependencies" : [ "SHOP" ],
"translations" : {
"CZ" : {
"name" : "Název",
"shortName" : "Zobrazit na účtence",
"code" : "Kód",
"type" : "Druh",
"price" : "Cena",
"vat" : "DPH",
"count" : "Počet"
}
},
"reports" : [
{ "name" : "Ceník", "description" : "Všechny položky v ceníku", "listReport" : true, "file" : "commodity_pricelist.lrxml" },
{ "name" : "Všechny položky", "description" : "Všechny položky zboží", "listReport" : true, "file" : "commodity_all_commodities.lrxml" }
]
}