2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-04 06:18:48 +00:00

Add incoming stock for build orders

This commit is contained in:
Oliver 2022-03-01 17:31:26 +11:00
parent 8f7164d5cd
commit dfd6684699

View File

@ -2035,46 +2035,48 @@ function loadPartSchedulingChart(canvas_id, part_id) {
} }
// Extract purchase order information from the server // Extract purchase order information from the server
inventreeGet( if (part_info.purchaseable) {
`/api/order/po-line/`, inventreeGet(
{ `/api/order/po-line/`,
pending: true, {
base_part: part_id, pending: true,
order_detail: true, base_part: part_id,
}, order_detail: true,
{ },
async: false, {
success: function(line_items) { async: false,
success: function(line_items) {
line_items.forEach(function(line_item) { line_items.forEach(function(line_item) {
// Extract target_date information from the response. // Extract target_date information from the response.
// If the line_item does not have an individual target date, maybe the parent order does? // If the line_item does not have an individual target date, maybe the parent order does?
var target_date = line_item.target_date || line_item.order_detail.target_date; var target_date = line_item.target_date || line_item.order_detail.target_date;
// How many to receive? // How many to receive?
var delta = Math.max(line_item.quantity - line_item.received, 0); var delta = Math.max(line_item.quantity - line_item.received, 0);
// TODO: What do we do if there is no target_date set for a PO line item? // TODO: What do we do if there is no target_date set for a PO line item?
// TODO: Do we just ignore it?? // TODO: Do we just ignore it??
if (target_date && delta > 0) { if (target_date && delta > 0) {
var td = moment(target_date); var td = moment(target_date);
if (td >= today) { if (td >= today) {
// TODO: Improve labels for purchase order lines // TODO: Improve labels for purchase order lines
addScheduleEntry(td, delta, "Purchase Order", '/index/'); addScheduleEntry(td, delta, "Purchase Order", '/index/');
} else { } else {
// Ignore any entries that are in the "past" // Ignore any entries that are in the "past"
// TODO: Can we better handle this case? // TODO: Can we better handle this case?
}
} }
} });
}); }
} }
} );
); }
// Extract sales order information from the server // Extract sales order information from the server
if (part_info.salable) { if (part_info.salable) {
@ -2117,6 +2119,42 @@ function loadPartSchedulingChart(canvas_id, part_id) {
); );
} }
// Request build orders for this part
if (part_info.assembly) {
inventreeGet(
`/api/build/`,
{
part: part_id,
active: true,
},
{
async: false,
success: function(build_orders) {
build_orders.forEach(function(build_order) {
var target_date = build_order.target_date;
var delta = Math.max(build_order.quantity - build_order.completed, 0);
// TODO: How do we handle the case where the build order does not have a target date??
// TODO: Do we just ignore it?
if (target_date && delta > 0) {
var td = moment(target_date);
if (td >= today) {
addScheduleEntry(td, delta, "Build Order", "");
} else {
// TODO: Handle case where the build order is in the "past"
}
}
});
}
}
)
}
// Iterate through future "events" to calculate expected quantity // Iterate through future "events" to calculate expected quantity
var quantity = part_info.in_stock; var quantity = part_info.in_stock;