diff --git a/_posts/2018-07-31-bom.md b/_posts/2018-07-31-bom.md
index 7f2d455..17cf318 100644
--- a/_posts/2018-07-31-bom.md
+++ b/_posts/2018-07-31-bom.md
@@ -51,8 +51,8 @@ Retrieve list of BOMs.
null - Retrieve list of all BOMs.
object - Retrieve list of BOMs using specified filters.
- Allowed properties for filtering: "product_bom_id", "sku", "name", "yield_qty", "is_kit_on_demand",
- "is_kit_to_stock", "assembly_instructions", "priority".
+ Allowed properties for filtering: "product_bom_id", "sku", "name", "yield_qty", "is_kit_on_demand",
+ "is_kit_to_stock", "is_allow_dekit", "assembly_instructions", "priority".
| 1 |
@@ -104,6 +104,7 @@ Get list of BOMs for one product SKU:
"yield_qty" : 1,
"is_kit_on_demand" : 1,
"is_kit_to_stock" : 0,
+ "is_allow_dekit" : 0,
"assembly_instructions" : "",
"priority" : 0,
"components" : [
@@ -206,6 +207,7 @@ BOM object if successful.
"yield_qty" : 1,
"is_kit_on_demand" : 1,
"is_kit_to_stock" : 0,
+ "is_allow_dekit" : 0,
"assembly_instructions" : "",
"priority" : 0,
"components" : [
@@ -409,6 +411,13 @@ true if BOM was successfully deleted.
If this option is true, the BOM will be available for use with a Work Order. Allowed: "1" - TRUE, "0" - FALSE
+
+ | is_allow_dekit |
+
+ { "is_allow_dekit" : "1" }
+ If this option is true, Work Orders for disassembly of this Bill of Materials into the components can be created. Dependency: is_kit_to_stock = "1". Allowed: "1" - TRUE, "0" - FALSE
+ |
+
| assembly_instructions |
|