Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions _posts/2018-07-31-bom.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ Retrieve list of BOMs.
<li>null - Retrieve list of all BOMs.</li>
<li>object - Retrieve list of BOMs using specified <a href="/doc/search-filters.html" title="Search Filters">filters</a>.</li>
</ul>
Allowed properties for filtering: "product_bom_id", "sku", "name", "yield_qty", "is_kit_on_demand",
"is_kit_to_stock", "assembly_instructions", "priority".</td>
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".</td>
</tr>
<tr>
<td>1</td>
Expand Down Expand Up @@ -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" : [
Expand Down Expand Up @@ -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" : [
Expand Down Expand Up @@ -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
</td>
</tr>
<tr>
<th>is_allow_dekit</th>
<td>
<pre><code>{ "is_allow_dekit" : "1" }</code></pre>
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
</td>
</tr>
<tr>
<th>assembly_instructions</th>
<td>
Expand Down