2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-18 02:36:31 +00:00

[Feature] Scrap Build Outputs (#4800)

* Update docs for status codes

* Adds API endpoint for scrapping individual build outputs

* Support 'buildorder' reference in stock tracking history

* Add page for build output documentation

* Build docs

* Add example build order process to docs

* remove debug statement

* JS lint cleanup

* Add migration file for stock status

* Add unit tests for build output scrapping

* Increment API version

* bug fix
This commit is contained in:
Oliver
2023-05-13 22:19:35 +10:00
committed by GitHub
parent 634daa2161
commit b2ceac2c4a
39 changed files with 794 additions and 254 deletions

View File

@@ -135,3 +135,22 @@ div:nth-of-type(1) p {
margin: 5px;
margin-bottom: 0px;
}
.badge.inventree.success {
background-color: #5cb85c;
color: #555;
}
.badge.inventree.warning {
background-color: #f0ad4e;
color: #555;
}
.badge.inventree.danger {
background-color: #d9534f;
}
.badge.inventree.info {
background-color: #5bc0de;
color: #555;
}