mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 04:26:44 +00:00
* Refactor AttachmentPanel into common component * Remove unused imports * Add very basic implementation for SalesOrderShipmentDetail page * Refactor NotesPanel into common component * Fetch customer data * Add some placeholder actions * Updates for shipment detail page * Adjust SalesOrderShipment API * Add badges * Implement API filter for SalesOrderAllocation * Display allocation table on shipment page * Add placeholder action to edit allocations * Improvements for SalesOrderAllocationTable * Improve API db fetch efficiency * Edit / delete pending allocations * Fix for legacy CUI tables * API tweaks * Revert custom attachment code for SalesOrderShipment * Implement "complete shipment" form * Allocate stock item(s) to sales order * Fixes for TableField rendering * Reset sourceLocation when form opens * Updated playwrigh tests * Tweak branch (will be reverted) * Revert github workflow
2325 lines
70 KiB
JavaScript
2325 lines
70 KiB
JavaScript
{% load i18n %}
|
|
{% load inventree_extras %}
|
|
|
|
|
|
/* globals
|
|
addClearCallback,
|
|
calculateTotalPrice,
|
|
clearEvents,
|
|
companyFormFields,
|
|
constructExpandCollapseButtons,
|
|
constructField,
|
|
constructForm,
|
|
constructOrderTableButtons,
|
|
endDate,
|
|
formatCurrency,
|
|
FullCalendar,
|
|
getFormFieldValue,
|
|
global_settings,
|
|
handleFormErrors,
|
|
handleFormSuccess,
|
|
imageHoverIcon,
|
|
initializeRelatedField,
|
|
inventreeGet,
|
|
inventreeLoad,
|
|
inventreePut,
|
|
launchModalForm,
|
|
locationDetail,
|
|
loadTableFilters,
|
|
makeCopyButton,
|
|
makeEditButton,
|
|
makeDeleteButton,
|
|
makeIconBadge,
|
|
makeIconButton,
|
|
makeProgressBar,
|
|
makeRemoveButton,
|
|
moment,
|
|
newBuildOrder,
|
|
orderParts,
|
|
reloadTotal,
|
|
renderDate,
|
|
renderLink,
|
|
salesOrderStatusDisplay,
|
|
setupFilterList,
|
|
showAlertDialog,
|
|
showApiError,
|
|
startDate,
|
|
thumbnailImage,
|
|
updateFieldValue,
|
|
wrapButtons,
|
|
*/
|
|
|
|
/* exported
|
|
allocateStockToSalesOrder,
|
|
cancelSalesOrder,
|
|
completeSalesOrder,
|
|
completeSalesOrderShipment,
|
|
completePendingShipments,
|
|
createSalesOrder,
|
|
createSalesOrderLineItem,
|
|
createSalesOrderShipment,
|
|
editSalesOrder,
|
|
exportOrder,
|
|
issueSalesOrder,
|
|
loadSalesOrderAllocationTable,
|
|
loadSalesOrderLineItemTable,
|
|
loadSalesOrderShipmentTable,
|
|
loadSalesOrderTable,
|
|
orderParts,
|
|
loadOrderTotal
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
* Construct a set of form fields for the SalesOrder model
|
|
*/
|
|
function salesOrderFields(options={}) {
|
|
let fields = {
|
|
reference: {
|
|
icon: 'fa-hashtag',
|
|
},
|
|
description: {},
|
|
customer: {
|
|
icon: 'fa-user-tie',
|
|
secondary: {
|
|
title: '{% trans "Add Customer" %}',
|
|
fields: function() {
|
|
var fields = companyFormFields();
|
|
fields.is_customer.value = true;
|
|
return fields;
|
|
}
|
|
}
|
|
},
|
|
customer_reference: {},
|
|
project_code: {
|
|
icon: 'fa-list',
|
|
},
|
|
order_currency: {
|
|
icon: 'fa-coins',
|
|
},
|
|
target_date: {
|
|
icon: 'fa-calendar-alt',
|
|
},
|
|
link: {
|
|
icon: 'fa-link',
|
|
},
|
|
contact: {
|
|
icon: 'fa-user',
|
|
adjustFilters: function(filters) {
|
|
let customer = getFormFieldValue('customer', {}, {modal: options.modal});
|
|
|
|
if (customer) {
|
|
filters.company = customer;
|
|
}
|
|
|
|
return filters;
|
|
}
|
|
},
|
|
address: {
|
|
icon: 'fa-map',
|
|
adjustFilters: function(filters) {
|
|
let customer = getFormFieldValue('customer', {}, {modal: options.modal});
|
|
|
|
if (customer) {
|
|
filters.company = customer;
|
|
}
|
|
|
|
return filters;
|
|
}
|
|
},
|
|
responsible: {
|
|
icon: 'fa-user',
|
|
filters: {
|
|
is_active: true,
|
|
}
|
|
}
|
|
};
|
|
|
|
if (!global_settings.PROJECT_CODES_ENABLED) {
|
|
delete fields.project_code;
|
|
}
|
|
|
|
return fields;
|
|
}
|
|
|
|
|
|
/*
|
|
* Create a new SalesOrder
|
|
*/
|
|
function createSalesOrder(options={}) {
|
|
|
|
let fields = salesOrderFields(options);
|
|
|
|
if (options.customer) {
|
|
fields.customer.value = options.customer;
|
|
}
|
|
|
|
constructForm('{% url "api-so-list" %}', {
|
|
method: 'POST',
|
|
fields: fields,
|
|
title: '{% trans "Create Sales Order" %}',
|
|
onSuccess: function(data) {
|
|
location.href = `/order/sales-order/${data.pk}/`;
|
|
},
|
|
});
|
|
}
|
|
|
|
|
|
/*
|
|
* Edit an existing SalesOrder
|
|
*/
|
|
function editSalesOrder(order_id, options={}) {
|
|
|
|
constructForm(`{% url "api-so-list" %}${order_id}/`, {
|
|
fields: salesOrderFields(options),
|
|
title: '{% trans "Edit Sales Order" %}',
|
|
onSuccess: function(response) {
|
|
handleFormSuccess(response, options);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Construct a set of fields for the SalesOrderLineItem form */
|
|
function soLineItemFields(options={}) {
|
|
|
|
let fields = {
|
|
order: {
|
|
hidden: true,
|
|
},
|
|
part: {
|
|
icon: 'fa-shapes',
|
|
},
|
|
quantity: {},
|
|
reference: {},
|
|
sale_price: {
|
|
icon: 'fa-dollar-sign',
|
|
},
|
|
sale_price_currency: {
|
|
icon: 'fa-coins',
|
|
},
|
|
target_date: {
|
|
icon: 'fa-calendar-alt',
|
|
},
|
|
notes: {
|
|
icon: 'fa-sticky-note',
|
|
},
|
|
link: {
|
|
icon: 'fa-link',
|
|
}
|
|
};
|
|
|
|
if (options.order) {
|
|
fields.order.value = options.order;
|
|
}
|
|
|
|
if (options.target_date) {
|
|
fields.target_date.value = options.target_date;
|
|
}
|
|
|
|
return fields;
|
|
}
|
|
|
|
|
|
/*
|
|
* Launch a modal form to create a new SalesOrderLineItem
|
|
*/
|
|
function createSalesOrderLineItem(options={}) {
|
|
|
|
let fields = soLineItemFields(options);
|
|
|
|
constructForm('{% url "api-so-line-list" %}', {
|
|
fields: fields,
|
|
method: 'POST',
|
|
title: '{% trans "Add Line Item" %}',
|
|
onSuccess: function(response) {
|
|
handleFormSuccess(response, options);
|
|
},
|
|
});
|
|
}
|
|
|
|
|
|
/*
|
|
* Form field definitions for a SalesOrderShipment
|
|
*/
|
|
function salesOrderShipmentFields(options={}) {
|
|
var fields = {
|
|
order: {},
|
|
reference: {},
|
|
tracking_number: {
|
|
icon: 'fa-hashtag',
|
|
},
|
|
invoice_number: {
|
|
icon: 'fa-dollar-sign',
|
|
},
|
|
link: {
|
|
icon: 'fa-link',
|
|
},
|
|
delivery_date: {
|
|
icon: 'fa-calendar-check',
|
|
}
|
|
};
|
|
|
|
// If order is specified, hide the order field
|
|
if (options.order) {
|
|
fields.order.value = options.order;
|
|
fields.order.hidden = true;
|
|
}
|
|
|
|
return fields;
|
|
}
|
|
|
|
|
|
/*
|
|
* Complete a Sales Order shipment
|
|
*/
|
|
function completeSalesOrderShipment(shipment_id, options={}) {
|
|
|
|
// Request the list of stock items which will be shipped
|
|
inventreeGet(`{% url "api-so-shipment-list" %}${shipment_id}/`, {}, {
|
|
success: function(shipment) {
|
|
var allocations = shipment.allocations;
|
|
|
|
var html = '';
|
|
|
|
if (!allocations || allocations.length == 0) {
|
|
html = `
|
|
<div class='alert alert-block alert-danger'>
|
|
{% trans "No stock items have been allocated to this shipment" %}
|
|
</div>
|
|
`;
|
|
} else {
|
|
html = `
|
|
{% trans "The following stock items will be shipped" %}
|
|
<table class='table table-striped table-condensed'>
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Part" %}</th>
|
|
<th>{% trans "Stock Item" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
`;
|
|
|
|
allocations.forEach(function(allocation) {
|
|
|
|
var part = allocation.part_detail;
|
|
var thumb = thumbnailImage(part.thumbnail || part.image);
|
|
|
|
var stock = '';
|
|
|
|
if (allocation.serial) {
|
|
stock = `{% trans "Serial Number" %}: ${allocation.serial}`;
|
|
} else {
|
|
stock = `{% trans "Quantity" %}: ${allocation.quantity}`;
|
|
}
|
|
|
|
html += `
|
|
<tr>
|
|
<td>${thumb} ${part.full_name}</td>
|
|
<td>${stock}</td>
|
|
</tr>
|
|
`;
|
|
});
|
|
|
|
html += `
|
|
</tbody>
|
|
</table>
|
|
`;
|
|
}
|
|
|
|
constructForm(`{% url "api-so-shipment-list" %}${shipment_id}/ship/`, {
|
|
method: 'POST',
|
|
title: `{% trans "Complete Shipment" %} ${shipment.reference}`,
|
|
fields: {
|
|
shipment_date: {
|
|
value: moment().format('YYYY-MM-DD'),
|
|
},
|
|
tracking_number: {
|
|
value: shipment.tracking_number,
|
|
icon: 'fa-hashtag',
|
|
},
|
|
invoice_number: {
|
|
value: shipment.invoice_number,
|
|
icon: 'fa-dollar-sign',
|
|
},
|
|
link: {
|
|
value: shipment.link,
|
|
icon: 'fa-link',
|
|
},
|
|
delivery_date: {
|
|
value: shipment.delivery_date,
|
|
icon: 'fa-calendar-check',
|
|
},
|
|
},
|
|
preFormContent: html,
|
|
confirm: true,
|
|
confirmMessage: '{% trans "Confirm Shipment" %}',
|
|
buttons: options.buttons,
|
|
onSuccess: function(data) {
|
|
// Reload tables
|
|
$('#so-lines-table').bootstrapTable('refresh');
|
|
$('#pending-shipments-table').bootstrapTable('refresh');
|
|
$('#completed-shipments-table').bootstrapTable('refresh');
|
|
|
|
if (options.onSuccess instanceof Function) {
|
|
options.onSuccess(data);
|
|
}
|
|
},
|
|
reload: options.reload
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
/*
|
|
* Launches a modal to mark all allocated pending shipments as complete
|
|
*/
|
|
function completePendingShipments(order_id, options={}) {
|
|
var pending_shipments = null;
|
|
|
|
// Request the list of stock items which will be shipped
|
|
inventreeGet(`{% url "api-so-shipment-list" %}`,
|
|
{
|
|
order: order_id,
|
|
shipped: false
|
|
},
|
|
{
|
|
async: false,
|
|
success: function(shipments) {
|
|
pending_shipments = shipments;
|
|
}
|
|
}
|
|
);
|
|
|
|
var allocated_shipments = [];
|
|
|
|
for (var idx = 0; idx < pending_shipments.length; idx++) {
|
|
if (pending_shipments[idx].allocations.length > 0) {
|
|
allocated_shipments.push(pending_shipments[idx]);
|
|
}
|
|
}
|
|
|
|
if (allocated_shipments.length > 0) {
|
|
completePendingShipmentsHelper(allocated_shipments, 0, options);
|
|
|
|
} else {
|
|
let html = `
|
|
<div class='alert alert-block alert-danger'>
|
|
`;
|
|
|
|
if (!pending_shipments.length) {
|
|
html += `
|
|
{% trans "No pending shipments found" %}
|
|
`;
|
|
} else {
|
|
html += `
|
|
{% trans "No stock items have been allocated to pending shipments" %}
|
|
`;
|
|
}
|
|
|
|
html += `
|
|
</div>
|
|
`;
|
|
|
|
constructForm(`{% url "api-so-shipment-list" %}0/ship/`, {
|
|
method: 'POST',
|
|
title: '{% trans "Complete Shipments" %}',
|
|
preFormContent: html,
|
|
onSubmit: function(fields, options) {
|
|
handleFormSuccess(fields, options);
|
|
},
|
|
closeText: 'Close',
|
|
hideSubmitButton: true,
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* Recursive helper for opening shipment completion modals
|
|
*/
|
|
function completePendingShipmentsHelper(shipments, shipment_idx, options={}) {
|
|
if (shipment_idx < shipments.length) {
|
|
completeSalesOrderShipment(shipments[shipment_idx].pk,
|
|
{
|
|
buttons: [
|
|
{
|
|
name: 'skip',
|
|
title: `{% trans "Skip" %}`,
|
|
onClick: function(form_options) {
|
|
if (form_options.modal) {
|
|
$(form_options.modal).modal('hide');
|
|
}
|
|
|
|
completePendingShipmentsHelper(shipments, shipment_idx + 1, options);
|
|
}
|
|
}
|
|
],
|
|
onSuccess: function(data) {
|
|
completePendingShipmentsHelper(shipments, shipment_idx + 1, options);
|
|
},
|
|
}
|
|
);
|
|
|
|
} else if (options.reload) {
|
|
location.reload();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* Launches a modal form to mark a SalesOrder as "shipped"
|
|
*/
|
|
function shipSalesOrder(order_id, options={}) {
|
|
|
|
constructForm(
|
|
`/api/order/so/${order_id}/complete/`,
|
|
{
|
|
method: 'POST',
|
|
title: '{% trans "Ship Sales Order" %}',
|
|
confirm: true,
|
|
fieldsFunction: function(opts) {
|
|
var fields = {
|
|
accept_incomplete: {},
|
|
};
|
|
|
|
if (opts.context.is_complete) {
|
|
delete fields['accept_incomplete'];
|
|
}
|
|
|
|
return fields;
|
|
},
|
|
preFormContent: function(opts) {
|
|
var html = `
|
|
<div class='alert alert-block alert-info'>
|
|
{% trans "Ship this order?" %}
|
|
</div>`;
|
|
|
|
if (opts.context.pending_shipments) {
|
|
html += `
|
|
<div class='alert alert-block alert-danger'>
|
|
{% trans "Order cannot be shipped as there are incomplete shipments" %}<br>
|
|
</div>`;
|
|
}
|
|
|
|
if (!opts.context.is_complete) {
|
|
html += `
|
|
<div class='alert alert-block alert-warning'>
|
|
{% trans "This order has line items which have not been completed." %}<br>
|
|
{% trans "Shipping this order means that the order and line items will no longer be editable." %}
|
|
</div>`;
|
|
}
|
|
|
|
return html;
|
|
},
|
|
onSuccess: function(response) {
|
|
handleFormSuccess(response, options);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
/*
|
|
* Launches a modal form to mark a SalesOrder as "completed"
|
|
*/
|
|
function completeSalesOrder(order_id, options={}) {
|
|
|
|
constructForm(
|
|
`/api/order/so/${order_id}/complete/`,
|
|
{
|
|
method: 'POST',
|
|
title: '{% trans "Complete Sales Order" %}',
|
|
confirm: true,
|
|
fieldsFunction: function(opts) {
|
|
var fields = {
|
|
accept_incomplete: {},
|
|
};
|
|
|
|
if (opts.context.is_complete) {
|
|
delete fields['accept_incomplete'];
|
|
}
|
|
|
|
return fields;
|
|
},
|
|
preFormContent: function(opts) {
|
|
var html = `
|
|
<div class='alert alert-block alert-info'>
|
|
{% trans "Mark this order as complete?" %}
|
|
</div>`;
|
|
|
|
return html;
|
|
},
|
|
onSuccess: function(response) {
|
|
handleFormSuccess(response, options);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
|
|
/*
|
|
* Launches sa modal form to mark a SalesOrder as "issued"
|
|
*/
|
|
function issueSalesOrder(order_id, options={}) {
|
|
|
|
let html = `
|
|
<div class='alert alert-block alert-info'>
|
|
{% trans "Issue this Sales Order?" %}
|
|
</div>`;
|
|
|
|
constructForm(`{% url "api-so-list" %}${order_id}/issue/`, {
|
|
method: 'POST',
|
|
title: '{% trans "Issue Sales Order" %}',
|
|
confirm: true,
|
|
preFormContent: html,
|
|
onSuccess: function(response) {
|
|
handleFormSuccess(response, options);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
/*
|
|
* Launches a modal form to mark a SalesOrder as "cancelled"
|
|
*/
|
|
function cancelSalesOrder(order_id, options={}) {
|
|
|
|
constructForm(
|
|
`/api/order/so/${order_id}/cancel/`,
|
|
{
|
|
method: 'POST',
|
|
title: '{% trans "Cancel Sales Order" %}',
|
|
confirm: true,
|
|
preFormContent: function(opts) {
|
|
var html = `
|
|
<div class='alert alert-block alert-warning'>
|
|
{% trans "Cancelling this order means that the order will no longer be editable." %}
|
|
</div>`;
|
|
|
|
return html;
|
|
},
|
|
onSuccess: function(response) {
|
|
handleFormSuccess(response, options);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
// Open a dialog to create a new sales order shipment
|
|
function createSalesOrderShipment(options={}) {
|
|
|
|
// Work out the next shipment number for the given order
|
|
inventreeGet(
|
|
'{% url "api-so-shipment-list" %}',
|
|
{
|
|
order: options.order,
|
|
},
|
|
{
|
|
success: function(results) {
|
|
// "predict" the next reference number
|
|
var ref = results.length + 1;
|
|
|
|
var found = false;
|
|
|
|
while (!found) {
|
|
|
|
var no_match = true;
|
|
|
|
for (var ii = 0; ii < results.length; ii++) {
|
|
if (ref.toString() == results[ii].reference.toString()) {
|
|
no_match = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (no_match) {
|
|
break;
|
|
} else {
|
|
ref++;
|
|
}
|
|
}
|
|
|
|
var fields = salesOrderShipmentFields(options);
|
|
|
|
fields.reference.value = ref;
|
|
fields.reference.prefix = options.reference;
|
|
|
|
constructForm('{% url "api-so-shipment-list" %}', {
|
|
method: 'POST',
|
|
fields: fields,
|
|
title: '{% trans "Create New Shipment" %}',
|
|
onSuccess: function(data) {
|
|
if (options.onSuccess) {
|
|
options.onSuccess(data);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* Load table displaying list of sales orders
|
|
*/
|
|
function loadSalesOrderTable(table, options) {
|
|
|
|
// Ensure the table starts in a known state
|
|
$(table).bootstrapTable('destroy');
|
|
|
|
options.params = options.params || {};
|
|
options.params['customer_detail'] = true;
|
|
|
|
var filters = loadTableFilters('salesorder', options.params);
|
|
|
|
setupFilterList('salesorder', $(table), '#filter-list-salesorder', {
|
|
download: true,
|
|
report: {
|
|
key: 'salesorder'
|
|
}
|
|
});
|
|
|
|
var display_mode = inventreeLoad('salesorder-table-display-mode', 'list');
|
|
|
|
function buildEvents(calendar) {
|
|
|
|
var start = startDate(calendar);
|
|
var end = endDate(calendar);
|
|
|
|
clearEvents(calendar);
|
|
|
|
// Extract current filters from table
|
|
var table_options = $(table).bootstrapTable('getOptions');
|
|
var filters = table_options.query_params || {};
|
|
|
|
filters.customer_detail = true;
|
|
filters.min_date = start;
|
|
filters.max_date = end;
|
|
|
|
// Request orders from the server within specified date range
|
|
inventreeGet(
|
|
'{% url "api-so-list" %}',
|
|
filters,
|
|
{
|
|
success: function(response) {
|
|
|
|
for (var idx = 0; idx < response.length; idx++) {
|
|
var order = response[idx];
|
|
|
|
var date = order.creation_date;
|
|
|
|
if (order.shipment_date) {
|
|
date = order.shipment_date;
|
|
} else if (order.target_date) {
|
|
date = order.target_date;
|
|
}
|
|
|
|
var title = `${order.reference} - ${order.customer_detail.name}`;
|
|
|
|
// Default color is blue
|
|
var color = '#4c68f5';
|
|
|
|
// Overdue orders are red
|
|
if (order.overdue) {
|
|
color = '#c22525';
|
|
} else if (order.status == {{ SalesOrderStatus.SHIPPED }}) {
|
|
color = '#25c235';
|
|
}
|
|
|
|
var event = {
|
|
title: title,
|
|
start: date,
|
|
end: date,
|
|
url: `/order/sales-order/${order.pk}/`,
|
|
backgroundColor: color,
|
|
};
|
|
|
|
calendar.addEvent(event);
|
|
}
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
$(table).inventreeTable({
|
|
url: '{% url "api-so-list" %}',
|
|
queryParams: filters,
|
|
name: 'salesorder',
|
|
groupBy: false,
|
|
sidePagination: 'server',
|
|
original: options.params,
|
|
showColums: display_mode != 'calendar',
|
|
search: display_mode != 'calendar',
|
|
showCustomViewButton: false,
|
|
showCustomView: display_mode == 'calendar',
|
|
disablePagination: display_mode == 'calendar',
|
|
formatNoMatches: function() {
|
|
return '{% trans "No sales orders found" %}';
|
|
},
|
|
buttons: constructOrderTableButtons({
|
|
prefix: 'salesorder',
|
|
disableTreeView: true,
|
|
callback: function() {
|
|
// Reload the entire table
|
|
loadSalesOrderTable(table, options);
|
|
},
|
|
}),
|
|
customView: function(data) {
|
|
return `<div id='purchase-order-calendar'></div>`;
|
|
},
|
|
onLoadSuccess: function() {
|
|
|
|
if (display_mode == 'calendar') {
|
|
var el = document.getElementById('purchase-order-calendar');
|
|
|
|
let calendar = new FullCalendar.Calendar(el, {
|
|
initialView: 'dayGridMonth',
|
|
nowIndicator: true,
|
|
aspectRatio: 2.5,
|
|
locale: options.locale,
|
|
datesSet: function() {
|
|
buildEvents(calendar);
|
|
}
|
|
});
|
|
|
|
calendar.render();
|
|
}
|
|
},
|
|
columns: [
|
|
{
|
|
title: '',
|
|
checkbox: true,
|
|
visible: true,
|
|
switchable: false,
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'reference',
|
|
title: '{% trans "Sales Order" %}',
|
|
formatter: function(value, row) {
|
|
var html = renderLink(value, `/order/sales-order/${row.pk}/`);
|
|
|
|
if (row.overdue) {
|
|
html += makeIconBadge('fa-calendar-times icon-red', '{% trans "Order is overdue" %}');
|
|
}
|
|
|
|
return html;
|
|
},
|
|
},
|
|
{
|
|
sortable: true,
|
|
sortName: 'customer__name',
|
|
field: 'customer_detail',
|
|
title: '{% trans "Customer" %}',
|
|
formatter: function(value, row) {
|
|
|
|
if (!row.customer_detail) {
|
|
return '{% trans "Invalid Customer" %}';
|
|
}
|
|
|
|
return imageHoverIcon(row.customer_detail.image) + renderLink(row.customer_detail.name, `/company/${row.customer}/?display=sales-orders/`);
|
|
}
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'customer_reference',
|
|
title: '{% trans "Customer Reference" %}',
|
|
},
|
|
{
|
|
sortable: false,
|
|
field: 'description',
|
|
title: '{% trans "Description" %}',
|
|
},
|
|
{
|
|
field: 'project_code',
|
|
title: '{% trans "Project Code" %}',
|
|
switchable: global_settings.PROJECT_CODES_ENABLED,
|
|
visible: global_settings.PROJECT_CODES_ENABLED,
|
|
sortable: true,
|
|
formatter: function(value, row) {
|
|
if (row.project_code_detail) {
|
|
return `<span title='${row.project_code_detail.description}'>${row.project_code_detail.code}</span>`;
|
|
}
|
|
}
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'status_custom_key',
|
|
title: '{% trans "Status" %}',
|
|
formatter: function(value, row) {
|
|
return salesOrderStatusDisplay(row.status_custom_key);
|
|
}
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'creation_date',
|
|
title: '{% trans "Creation Date" %}',
|
|
formatter: function(value) {
|
|
return renderDate(value);
|
|
}
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'target_date',
|
|
title: '{% trans "Target Date" %}',
|
|
formatter: function(value) {
|
|
return renderDate(value);
|
|
}
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'shipment_date',
|
|
title: '{% trans "Shipment Date" %}',
|
|
formatter: function(value) {
|
|
return renderDate(value);
|
|
}
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'line_items',
|
|
title: '{% trans "Items" %}'
|
|
},
|
|
{
|
|
field: 'total_price',
|
|
title: '{% trans "Total Cost" %}',
|
|
switchable: true,
|
|
sortable: true,
|
|
formatter: function(value, row) {
|
|
return formatCurrency(value, {
|
|
currency: row.order_currency ?? row.customer_detail?.currency,
|
|
});
|
|
}
|
|
}
|
|
],
|
|
});
|
|
}
|
|
|
|
|
|
/*
|
|
* Load a table displaying Shipment information against a particular order
|
|
*/
|
|
function loadSalesOrderShipmentTable(table, options={}) {
|
|
|
|
options.table = table;
|
|
|
|
options.params = options.params || {};
|
|
|
|
// Filter by order
|
|
options.params.order = options.order;
|
|
|
|
// Filter by "shipped" status
|
|
options.params.shipped = options.shipped || false;
|
|
|
|
var filters = loadTableFilters('salesordershipment', options.params);
|
|
|
|
setupFilterList('salesordershipment', $(table), options.filter_target, {
|
|
report: {
|
|
key: 'salesordershipment',
|
|
}
|
|
});
|
|
|
|
// Add callbacks for expand / collapse buttons
|
|
var prefix = options.shipped ? 'completed' : 'pending';
|
|
|
|
// Add option to show SO reference also
|
|
var show_so_reference = options.show_so_reference || false;
|
|
|
|
$(`#${prefix}-shipments-expand`).click(function() {
|
|
$(table).bootstrapTable('expandAllRows');
|
|
});
|
|
|
|
$(`#${prefix}-shipments-collapse`).click(function() {
|
|
$(table).bootstrapTable('collapseAllRows');
|
|
});
|
|
|
|
function makeShipmentActions(row) {
|
|
// Construct "actions" for the given shipment row
|
|
var pk = row.pk;
|
|
|
|
let html = '';
|
|
|
|
html += makeEditButton('button-shipment-edit', pk, '{% trans "Edit shipment" %}');
|
|
|
|
if (!options.shipped) {
|
|
html += makeIconButton('fa-truck icon-green', 'button-shipment-ship', pk, '{% trans "Complete shipment" %}');
|
|
}
|
|
|
|
var enable_delete = row.allocated_items == 0;
|
|
|
|
html += makeDeleteButton('button-shipment-delete', pk, '{% trans "Delete shipment" %}', {disabled: !enable_delete});
|
|
|
|
return wrapButtons(html);
|
|
}
|
|
|
|
function setupShipmentCallbacks() {
|
|
// Setup action button callbacks
|
|
|
|
$(table).find('.button-shipment-edit').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
var fields = salesOrderShipmentFields();
|
|
|
|
delete fields.order;
|
|
|
|
constructForm(`{% url "api-so-shipment-list" %}${pk}/`, {
|
|
fields: fields,
|
|
title: '{% trans "Edit Shipment" %}',
|
|
refreshTable: table,
|
|
});
|
|
});
|
|
|
|
$(table).find('.button-shipment-ship').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
completeSalesOrderShipment(pk);
|
|
});
|
|
|
|
$(table).find('.button-shipment-delete').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
constructForm(`{% url "api-so-shipment-list" %}${pk}/`, {
|
|
title: '{% trans "Delete Shipment" %}',
|
|
method: 'DELETE',
|
|
refreshTable: table,
|
|
});
|
|
});
|
|
}
|
|
|
|
$(table).inventreeTable({
|
|
url: '{% url "api-so-shipment-list" %}',
|
|
queryParams: filters,
|
|
original: options.params,
|
|
name: options.name || 'salesordershipment',
|
|
search: false,
|
|
paginationVAlign: 'bottom',
|
|
showColumns: true,
|
|
detailView: true,
|
|
detailViewByClick: false,
|
|
buttons: constructExpandCollapseButtons(table),
|
|
detailFilter: function(index, row) {
|
|
return row.allocated_items > 0;
|
|
},
|
|
detailFormatter: function(index, row, element) {
|
|
return showAllocationSubTable(
|
|
index, row, element,
|
|
{
|
|
...options,
|
|
queryParams: {
|
|
shipment: row.pk,
|
|
order: row.order,
|
|
}
|
|
}
|
|
);
|
|
},
|
|
onPostBody: function() {
|
|
setupShipmentCallbacks();
|
|
|
|
// Auto-expand rows on the "pending" table
|
|
if (!options.shipped) {
|
|
$(table).bootstrapTable('expandAllRows');
|
|
}
|
|
},
|
|
formatNoMatches: function() {
|
|
return '{% trans "No matching shipments found" %}';
|
|
},
|
|
columns: [
|
|
{
|
|
title: '',
|
|
checkbox: true,
|
|
visible: true,
|
|
switchable: false,
|
|
},
|
|
{
|
|
visible: show_so_reference,
|
|
field: 'order_detail',
|
|
title: '{% trans "Sales Order" %}',
|
|
switchable: false,
|
|
formatter: function(value, row) {
|
|
var html = renderLink(row.order_detail.reference, `/order/sales-order/${row.order}/`);
|
|
|
|
if (row.overdue) {
|
|
html += makeIconBadge('fa-calendar-times icon-red', '{% trans "Order is overdue" %}');
|
|
}
|
|
|
|
return html;
|
|
},
|
|
},
|
|
{
|
|
field: 'reference',
|
|
title: '{% trans "Shipment Reference" %}',
|
|
switchable: false,
|
|
},
|
|
{
|
|
field: 'allocated_items',
|
|
title: '{% trans "Items" %}',
|
|
switchable: false,
|
|
sortable: true,
|
|
},
|
|
{
|
|
field: 'shipment_date',
|
|
title: '{% trans "Shipment Date" %}',
|
|
sortable: true,
|
|
formatter: function(value, row) {
|
|
if (value) {
|
|
return renderDate(value);
|
|
} else {
|
|
return '<em>{% trans "Not shipped" %}</em>';
|
|
}
|
|
}
|
|
},
|
|
{
|
|
field: 'delivery_date',
|
|
title: '{% trans "Delivery Date" %}',
|
|
sortable: true,
|
|
formatter: function(value, row) {
|
|
if (value) {
|
|
return renderDate(value);
|
|
} else {
|
|
return '<em>{% trans "Unknown" %}</em>';
|
|
}
|
|
}
|
|
},
|
|
{
|
|
field: 'tracking_number',
|
|
title: '{% trans "Tracking" %}',
|
|
},
|
|
{
|
|
field: 'invoice_number',
|
|
title: '{% trans "Invoice" %}',
|
|
},
|
|
{
|
|
field: 'link',
|
|
title: '{% trans "Link" %}',
|
|
formatter: function(value) {
|
|
if (value) {
|
|
return renderLink(value, value);
|
|
} else {
|
|
return '-';
|
|
}
|
|
}
|
|
},
|
|
{
|
|
field: 'notes',
|
|
title: '{% trans "Notes" %}',
|
|
visible: false,
|
|
switchable: false,
|
|
// TODO: Implement 'notes' field
|
|
},
|
|
{
|
|
title: '',
|
|
switchable: false,
|
|
formatter: function(value, row) {
|
|
return makeShipmentActions(row);
|
|
}
|
|
}
|
|
],
|
|
});
|
|
}
|
|
|
|
|
|
/**
|
|
* Allocate stock items against a SalesOrder
|
|
*
|
|
* arguments:
|
|
* - order_id: The ID / PK value for the SalesOrder
|
|
* - lines: A list of SalesOrderLineItem objects to be allocated
|
|
*
|
|
* options:
|
|
* - source_location: ID / PK of the top-level StockLocation to source stock from (or null)
|
|
*/
|
|
function allocateStockToSalesOrder(order_id, line_items, options={}) {
|
|
|
|
function renderLineItemRow(line_item, quantity) {
|
|
// Function to render a single line_item row
|
|
|
|
var pk = line_item.pk;
|
|
|
|
var part = line_item.part_detail;
|
|
|
|
var thumb = thumbnailImage(part.thumbnail || part.image);
|
|
|
|
let delete_button = wrapButtons(
|
|
makeRemoveButton(
|
|
'button-row-remove',
|
|
pk,
|
|
'{% trans "Remove row" %}',
|
|
)
|
|
);
|
|
|
|
delete_button += '</div>';
|
|
|
|
var quantity_input = constructField(
|
|
`items_quantity_${pk}`,
|
|
{
|
|
type: 'decimal',
|
|
min_value: 0,
|
|
value: quantity || 0,
|
|
title: '{% trans "Specify stock allocation quantity" %}',
|
|
required: true,
|
|
},
|
|
{
|
|
hideLabels: true,
|
|
}
|
|
);
|
|
|
|
var stock_input = constructField(
|
|
`items_stock_item_${pk}`,
|
|
{
|
|
type: 'related field',
|
|
required: 'true',
|
|
},
|
|
{
|
|
hideLabels: true,
|
|
}
|
|
);
|
|
|
|
var html = `
|
|
<tr id='allocation_row_${pk}' class='line-allocation-row'>
|
|
<td id='part_${pk}'>
|
|
${thumb} ${part.full_name}
|
|
</td>
|
|
<td id='stock_item_${pk}'>
|
|
${stock_input}
|
|
</td>
|
|
<td id='quantity_${pk}'>
|
|
${quantity_input}
|
|
</td>
|
|
<td id='buttons_${pk}>
|
|
${delete_button}
|
|
</td>
|
|
</tr>
|
|
`;
|
|
|
|
return html;
|
|
}
|
|
|
|
var table_entries = '';
|
|
|
|
for (var idx = 0; idx < line_items.length; idx++ ) {
|
|
let line_item = line_items[idx];
|
|
let remaining = Math.max(0, line_item.quantity - line_item.allocated);
|
|
|
|
table_entries += renderLineItemRow(line_item, remaining);
|
|
}
|
|
|
|
if (table_entries.length == 0) {
|
|
showAlertDialog(
|
|
'{% trans "Select Parts" %}',
|
|
'{% trans "You must select at least one part to allocate" %}',
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
var html = '';
|
|
|
|
// Render a "source location" input field
|
|
html += constructField(
|
|
'take_from',
|
|
{
|
|
type: 'related field',
|
|
label: '{% trans "Source Location" %}',
|
|
help_text: '{% trans "Select source location (leave blank to take from all locations)" %}',
|
|
required: false,
|
|
},
|
|
{},
|
|
);
|
|
|
|
// Create table of line items
|
|
html += `
|
|
<table class='table table-striped table-condensed' id='stock-allocation-table'>
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Part" %}</th>
|
|
<th style='min-width: 250px;'>{% trans "Stock Item" %}</th>
|
|
<th>{% trans "Quantity" %}</th>
|
|
<th></th>
|
|
</thead>
|
|
<tbody>
|
|
${table_entries}
|
|
</tbody>
|
|
</table>`;
|
|
|
|
constructForm(`{% url "api-so-list" %}${order_id}/allocate/`, {
|
|
method: 'POST',
|
|
fields: {
|
|
shipment: {
|
|
filters: {
|
|
order: order_id,
|
|
shipped: false,
|
|
},
|
|
value: options.shipment || null,
|
|
auto_fill: true,
|
|
secondary: {
|
|
method: 'POST',
|
|
title: '{% trans "Add Shipment" %}',
|
|
fields: function() {
|
|
var ref = null;
|
|
|
|
// TODO: Refactor code for getting next shipment number
|
|
inventreeGet(
|
|
'{% url "api-so-shipment-list" %}',
|
|
{
|
|
order: options.order,
|
|
},
|
|
{
|
|
async: false,
|
|
success: function(results) {
|
|
// "predict" the next reference number
|
|
ref = results.length + 1;
|
|
|
|
var found = false;
|
|
|
|
while (!found) {
|
|
|
|
var no_match = true;
|
|
|
|
for (var ii = 0; ii < results.length; ii++) {
|
|
if (ref.toString() == results[ii].reference.toString()) {
|
|
no_match = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (no_match) {
|
|
break;
|
|
} else {
|
|
ref++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
var fields = salesOrderShipmentFields(options);
|
|
|
|
fields.reference.value = ref;
|
|
fields.reference.prefix = options.reference;
|
|
|
|
return fields;
|
|
}
|
|
}
|
|
}
|
|
},
|
|
preFormContent: html,
|
|
confirm: true,
|
|
confirmMessage: '{% trans "Confirm stock allocation" %}',
|
|
title: '{% trans "Allocate Stock Items to Sales Order" %}',
|
|
afterRender: function(fields, opts) {
|
|
|
|
// Initialize source location field
|
|
var take_from_field = {
|
|
name: 'take_from',
|
|
model: 'stocklocation',
|
|
api_url: '{% url "api-location-list" %}',
|
|
required: false,
|
|
type: 'related field',
|
|
value: options.source_location || null,
|
|
noResults: function(query) {
|
|
return '{% trans "No matching stock locations" %}';
|
|
},
|
|
};
|
|
|
|
initializeRelatedField(
|
|
take_from_field,
|
|
null,
|
|
opts
|
|
);
|
|
|
|
// Add callback to "clear" button for take_from field
|
|
addClearCallback(
|
|
'take_from',
|
|
take_from_field,
|
|
opts,
|
|
);
|
|
|
|
// Initialize fields for each line item
|
|
line_items.forEach(function(line_item) {
|
|
var pk = line_item.pk;
|
|
|
|
initializeRelatedField(
|
|
{
|
|
name: `items_stock_item_${pk}`,
|
|
api_url: '{% url "api-stock-list" %}',
|
|
filters: {
|
|
part: line_item.part,
|
|
in_stock: true,
|
|
part_detail: true,
|
|
location_detail: true,
|
|
available: true,
|
|
salable: true,
|
|
active: true,
|
|
},
|
|
model: 'stockitem',
|
|
required: true,
|
|
render_part_detail: true,
|
|
render_location_detail: true,
|
|
auto_fill: true,
|
|
onSelect: function(data, field, opts) {
|
|
// Adjust the 'quantity' field based on availability
|
|
|
|
if (!('quantity' in data)) {
|
|
return;
|
|
}
|
|
|
|
// Calculate the available quantity
|
|
var available = Math.max((data.quantity || 0) - (data.allocated || 0), 0);
|
|
|
|
// Remaining quantity to be allocated?
|
|
var remaining = Math.max(line_item.quantity - line_item.allocated, 0);
|
|
|
|
// Maximum amount that we need
|
|
var desired = Math.min(available, remaining);
|
|
|
|
updateFieldValue(`items_quantity_${pk}`, desired, {}, opts);
|
|
|
|
},
|
|
adjustFilters: function(filters) {
|
|
// Restrict query to the selected location
|
|
var location = getFormFieldValue(
|
|
'take_from',
|
|
{},
|
|
{
|
|
modal: opts.modal,
|
|
}
|
|
);
|
|
|
|
filters.location = location;
|
|
filters.cascade = true;
|
|
|
|
// Exclude expired stock?
|
|
if (global_settings.STOCK_ENABLE_EXPIRY && !global_settings.STOCK_ALLOW_EXPIRED_SALE) {
|
|
filters.expired = false;
|
|
}
|
|
|
|
return filters;
|
|
},
|
|
noResults: function(query) {
|
|
return '{% trans "No matching stock items" %}';
|
|
}
|
|
},
|
|
null,
|
|
opts
|
|
);
|
|
});
|
|
|
|
// Add remove-row button callbacks
|
|
$(opts.modal).find('.button-row-remove').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
$(opts.modal).find(`#allocation_row_${pk}`).remove();
|
|
});
|
|
},
|
|
onSubmit: function(fields, opts) {
|
|
// Extract data elements from the form
|
|
var data = {
|
|
items: [],
|
|
shipment: getFormFieldValue(
|
|
'shipment',
|
|
{},
|
|
opts
|
|
)
|
|
};
|
|
|
|
var item_pk_values = [];
|
|
|
|
line_items.forEach(function(item) {
|
|
|
|
var pk = item.pk;
|
|
|
|
var quantity = getFormFieldValue(
|
|
`items_quantity_${pk}`,
|
|
{},
|
|
opts
|
|
);
|
|
|
|
var stock_item = getFormFieldValue(
|
|
`items_stock_item_${pk}`,
|
|
{},
|
|
opts
|
|
);
|
|
|
|
if (quantity != null) {
|
|
data.items.push({
|
|
line_item: pk,
|
|
stock_item: stock_item,
|
|
quantity: quantity,
|
|
});
|
|
|
|
item_pk_values.push(pk);
|
|
}
|
|
});
|
|
|
|
// Provide nested values
|
|
opts.nested = {
|
|
'items': item_pk_values
|
|
};
|
|
|
|
inventreePut(
|
|
opts.url,
|
|
data,
|
|
{
|
|
method: 'POST',
|
|
success: function(response) {
|
|
$(opts.modal).modal('hide');
|
|
|
|
if (options.success) {
|
|
options.success(response);
|
|
}
|
|
},
|
|
error: function(xhr) {
|
|
switch (xhr.status) {
|
|
case 400:
|
|
handleFormErrors(xhr.responseJSON, fields, opts);
|
|
break;
|
|
default:
|
|
$(opts.modal).modal('hide');
|
|
showApiError(xhr);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
);
|
|
},
|
|
});
|
|
}
|
|
|
|
|
|
/**
|
|
* Load a table with SalesOrderAllocation items
|
|
*/
|
|
function loadSalesOrderAllocationTable(table, options={}) {
|
|
|
|
options.params = options.params || {};
|
|
|
|
options.params['location_detail'] = true;
|
|
options.params['part_detail'] = true;
|
|
options.params['item_detail'] = true;
|
|
options.params['order_detail'] = true;
|
|
|
|
let filters = loadTableFilters('salesorderallocation', options.params);
|
|
|
|
setupFilterList('salesorderallocation', $(table));
|
|
|
|
$(table).inventreeTable({
|
|
url: '{% url "api-so-allocation-list" %}',
|
|
queryParams: filters,
|
|
name: options.name || 'salesorderallocation',
|
|
groupBy: false,
|
|
search: false,
|
|
paginationVAlign: 'bottom',
|
|
original: options.params,
|
|
formatNoMatches: function() {
|
|
return '{% trans "No sales order allocations found" %}';
|
|
},
|
|
columns: [
|
|
{
|
|
field: 'pk',
|
|
visible: false,
|
|
switchable: false,
|
|
},
|
|
{
|
|
field: 'order',
|
|
switchable: false,
|
|
title: '{% trans "Order" %}',
|
|
formatter: function(value, row) {
|
|
|
|
var ref = `${row.order_detail.reference}`;
|
|
|
|
return renderLink(ref, `/order/sales-order/${row.order}/`);
|
|
}
|
|
},
|
|
{
|
|
field: 'item',
|
|
switchable: false,
|
|
title: '{% trans "Stock Item" %}',
|
|
formatter: function(value, row) {
|
|
// Render a link to the particular stock item
|
|
|
|
var link = `/stock/item/${row.item}/`;
|
|
var text = `{% trans "Stock Item" %} ${row.item}`;
|
|
|
|
return renderLink(text, link);
|
|
}
|
|
},
|
|
{
|
|
field: 'location',
|
|
title: '{% trans "Location" %}',
|
|
formatter: function(value, row) {
|
|
return locationDetail(row.item_detail, true);
|
|
}
|
|
},
|
|
{
|
|
field: 'quantity',
|
|
title: '{% trans "Quantity" %}',
|
|
sortable: true,
|
|
},
|
|
{
|
|
field: 'shipment_date',
|
|
title: '{% trans "Shipped" %}',
|
|
sortable: true,
|
|
formatter: function(value, row) {
|
|
if (value) {
|
|
return renderDate(value);
|
|
} else {
|
|
return `<em>{% trans "Not shipped" %}</em>`;
|
|
}
|
|
}
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
|
|
/**
|
|
* Display an "allocations" sub table, showing stock items allocated against a sales order
|
|
* @param {*} index
|
|
* @param {*} row
|
|
* @param {*} element
|
|
*/
|
|
function showAllocationSubTable(index, row, element, options) {
|
|
|
|
// Construct a sub-table element
|
|
var html = `
|
|
<div class='sub-table'>
|
|
<table class='table table-striped table-condensed' id='allocation-table-${row.pk}'></table>
|
|
</div>`;
|
|
|
|
element.html(html);
|
|
|
|
var table = $(`#allocation-table-${row.pk}`);
|
|
|
|
function setupCallbacks() {
|
|
// Add callbacks for 'edit' buttons
|
|
table.find('.button-allocation-edit').click(function() {
|
|
|
|
var pk = $(this).attr('pk');
|
|
|
|
// Edit the sales order allocation
|
|
constructForm(
|
|
`/api/order/so-allocation/${pk}/`,
|
|
{
|
|
fields: {
|
|
quantity: {},
|
|
},
|
|
title: '{% trans "Edit Stock Allocation" %}',
|
|
refreshTable: options.table,
|
|
},
|
|
);
|
|
});
|
|
|
|
// Add callbacks for 'delete' buttons
|
|
table.find('.button-allocation-delete').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
constructForm(
|
|
`/api/order/so-allocation/${pk}/`,
|
|
{
|
|
method: 'DELETE',
|
|
confirmMessage: '{% trans "Confirm Delete Operation" %}',
|
|
title: '{% trans "Delete Stock Allocation" %}',
|
|
refreshTable: options.table,
|
|
}
|
|
);
|
|
});
|
|
}
|
|
|
|
table.bootstrapTable({
|
|
url: '{% url "api-so-allocation-list" %}',
|
|
onPostBody: setupCallbacks,
|
|
queryParams: {
|
|
...options.queryParams,
|
|
part_detail: true,
|
|
location_detail: true,
|
|
order_detail: true,
|
|
},
|
|
data: row.allocations,
|
|
showHeader: true,
|
|
columns: [
|
|
{
|
|
field: 'part_detail',
|
|
title: '{% trans "Part" %}',
|
|
formatter: function(part, row) {
|
|
return imageHoverIcon(part.thumbnail) + renderLink(part.full_name, `/part/${part.pk}/`);
|
|
}
|
|
},
|
|
{
|
|
field: 'shipment',
|
|
title: '{% trans "Shipment" %}',
|
|
formatter: function(value, row) {
|
|
return row.shipment_detail.reference;
|
|
}
|
|
},
|
|
{
|
|
field: 'allocated',
|
|
title: '{% trans "Stock Item" %}',
|
|
formatter: function(value, row, index, field) {
|
|
let item = row.item_detail;
|
|
let text = `{% trans "Quantity" %}: ${row.quantity}`;
|
|
|
|
if (item && item.serial != null && row.quantity == 1) {
|
|
text = `{% trans "Serial Number" %}: ${item.serial}`;
|
|
}
|
|
|
|
return renderLink(text, `/stock/item/${row.item}/`);
|
|
},
|
|
},
|
|
{
|
|
field: 'location',
|
|
title: '{% trans "Location" %}',
|
|
formatter: function(value, row, index, field) {
|
|
|
|
if (row.shipment_date) {
|
|
return `<em>{% trans "Shipped to customer" %} - ${row.shipment_date}</em>`;
|
|
} else if (row.location) {
|
|
// Location specified
|
|
return renderLink(
|
|
row.location_detail.pathstring || '{% trans "Location" %}',
|
|
`/stock/location/${row.location}/`
|
|
);
|
|
} else {
|
|
return `<em>{% trans "Stock location not specified" %}</em>`;
|
|
}
|
|
},
|
|
},
|
|
{
|
|
field: 'buttons',
|
|
title: '',
|
|
formatter: function(value, row, index, field) {
|
|
|
|
let html = '';
|
|
let pk = row.pk;
|
|
|
|
if (row.shipment_date) {
|
|
html += `<span class='badge bg-success badge-right'>{% trans "Shipped" %}</span>`;
|
|
} else {
|
|
html += makeEditButton('button-allocation-edit', pk, '{% trans "Edit stock allocation" %}');
|
|
html += makeDeleteButton('button-allocation-delete', pk, '{% trans "Delete stock allocation" %}');
|
|
}
|
|
|
|
return wrapButtons(html);
|
|
},
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Display a "fulfilled" sub table, showing stock items fulfilled against a purchase order
|
|
*/
|
|
function showFulfilledSubTable(index, row, element, options) {
|
|
// Construct a table showing stock items which have been fulfilled against this line item
|
|
|
|
if (!options.order) {
|
|
return 'ERROR: Order ID not supplied';
|
|
}
|
|
|
|
var id = `fulfilled-table-${row.pk}`;
|
|
|
|
var html = `
|
|
<div class='sub-table'>
|
|
<table class='table table-striped table-condensed' id='${id}'>
|
|
</table>
|
|
</div>`;
|
|
|
|
element.html(html);
|
|
|
|
$(`#${id}`).bootstrapTable({
|
|
url: '{% url "api-stock-list" %}',
|
|
queryParams: {
|
|
part: row.part,
|
|
sales_order: options.order,
|
|
location_detail: true,
|
|
},
|
|
showHeader: true,
|
|
columns: [
|
|
{
|
|
field: 'pk',
|
|
visible: false,
|
|
},
|
|
{
|
|
field: 'stock',
|
|
title: '{% trans "Stock Item" %}',
|
|
formatter: function(value, row) {
|
|
var text = '';
|
|
if (row.serial && row.quantity == 1) {
|
|
text = `{% trans "Serial Number" %}: ${row.serial}`;
|
|
} else {
|
|
text = `{% trans "Quantity" %}: ${row.quantity}`;
|
|
}
|
|
|
|
return renderLink(text, `/stock/item/${row.pk}/`);
|
|
},
|
|
},
|
|
{
|
|
field: 'location',
|
|
title: '{% trans "Location" %}',
|
|
formatter: function(value, row) {
|
|
if (row.customer) {
|
|
return renderLink(
|
|
'{% trans "Shipped to customer" %}',
|
|
`/company/${row.customer}/`
|
|
);
|
|
} else if (row.location && row.location_detail) {
|
|
return renderLink(
|
|
row.location_detail.pathstring,
|
|
`/stock/location/${row.location}`,
|
|
);
|
|
} else {
|
|
return `<em>{% trans "Stock location not specified" %}</em>`;
|
|
}
|
|
}
|
|
}
|
|
],
|
|
});
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Load a table displaying line items for a particular SalesOrder
|
|
*
|
|
* @param {String} table : HTML ID tag e.g. '#table'
|
|
* @param {Object} options : object which contains:
|
|
* - order {integer} : pk of the SalesOrder
|
|
* - status: {integer} : status code for the order
|
|
*/
|
|
function loadSalesOrderLineItemTable(table, options={}) {
|
|
|
|
options.table = table;
|
|
|
|
options.params = options.params || {};
|
|
|
|
if (!options.order) {
|
|
console.error('loadSalesOrderLineItemTable called without order ID');
|
|
return;
|
|
}
|
|
|
|
if (!options.status) {
|
|
console.error('loadSalesOrderLineItemTable called without order status');
|
|
return;
|
|
}
|
|
|
|
options.params.order = options.order;
|
|
options.params.part_detail = true;
|
|
options.params.allocations = true;
|
|
|
|
var filters = loadTableFilters('salesorderlineitem', options.params);
|
|
|
|
options.url = options.url || '{% url "api-so-line-list" %}';
|
|
|
|
var filter_target = options.filter_target || '#filter-list-sales-order-lines';
|
|
|
|
setupFilterList(
|
|
'salesorderlineitem',
|
|
$(table),
|
|
filter_target,
|
|
{
|
|
download: true,
|
|
}
|
|
);
|
|
|
|
var show_detail = true;
|
|
|
|
// Add callbacks for expand / collapse buttons
|
|
$('#sales-lines-expand').click(function() {
|
|
$(table).bootstrapTable('expandAllRows');
|
|
});
|
|
|
|
$('#sales-lines-collapse').click(function() {
|
|
$(table).bootstrapTable('collapseAllRows');
|
|
});
|
|
|
|
// Table columns to display
|
|
var columns = [
|
|
/*
|
|
{
|
|
checkbox: true,
|
|
visible: true,
|
|
switchable: false,
|
|
},
|
|
*/
|
|
{
|
|
sortable: true,
|
|
sortName: 'part_detail.name',
|
|
field: 'part',
|
|
title: '{% trans "Part" %}',
|
|
switchable: false,
|
|
formatter: function(value, row, index, field) {
|
|
if (row.part_detail) {
|
|
return imageHoverIcon(row.part_detail.thumbnail) + renderLink(row.part_detail.full_name, `/part/${value}/`);
|
|
} else {
|
|
return '-';
|
|
}
|
|
},
|
|
footerFormatter: function() {
|
|
return '{% trans "Total" %}';
|
|
},
|
|
},
|
|
{
|
|
sortable: false,
|
|
field: 'part_detail.description',
|
|
title: '{% trans "Description" %}',
|
|
switchable: true,
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'reference',
|
|
title: '{% trans "Reference" %}',
|
|
switchable: true,
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'quantity',
|
|
title: '{% trans "Quantity" %}',
|
|
footerFormatter: function(data) {
|
|
return data.map(function(row) {
|
|
return +row['quantity'];
|
|
}).reduce(function(sum, i) {
|
|
return sum + i;
|
|
}, 0);
|
|
},
|
|
switchable: false,
|
|
},
|
|
{
|
|
sortable: true,
|
|
field: 'sale_price',
|
|
title: '{% trans "Unit Price" %}',
|
|
formatter: function(value, row) {
|
|
return formatCurrency(row.sale_price, {
|
|
currency: row.sale_price_currency
|
|
});
|
|
}
|
|
},
|
|
{
|
|
field: 'total_price',
|
|
sortable: true,
|
|
title: '{% trans "Total Price" %}',
|
|
formatter: function(value, row) {
|
|
return formatCurrency(row.sale_price * row.quantity, {
|
|
currency: row.sale_price_currency,
|
|
});
|
|
},
|
|
footerFormatter: function(data) {
|
|
return calculateTotalPrice(
|
|
data,
|
|
function(row) {
|
|
return row.sale_price ? row.sale_price * row.quantity : null;
|
|
},
|
|
function(row) {
|
|
return row.sale_price_currency;
|
|
}
|
|
);
|
|
}
|
|
},
|
|
{
|
|
field: 'target_date',
|
|
title: '{% trans "Target Date" %}',
|
|
sortable: true,
|
|
switchable: true,
|
|
formatter: function(value, row) {
|
|
if (row.target_date) {
|
|
var html = renderDate(row.target_date);
|
|
|
|
if (row.overdue) {
|
|
html += makeIconBadge('fa-calendar-times', '{% trans "This line item is overdue" %}');
|
|
}
|
|
|
|
return html;
|
|
|
|
} else if (row.order_detail && row.order_detail.target_date) {
|
|
return `<em>${renderDate(row.order_detail.target_date)}</em>`;
|
|
} else {
|
|
return '-';
|
|
}
|
|
}
|
|
}
|
|
];
|
|
|
|
if (options.open) {
|
|
columns.push(
|
|
{
|
|
field: 'stock',
|
|
title: '{% trans "Available Stock" %}',
|
|
formatter: function(value, row) {
|
|
|
|
let available = row.available_stock + row.available_variant_stock;
|
|
let required = Math.max(row.quantity - row.allocated - row.shipped, 0);
|
|
|
|
let html = '';
|
|
|
|
if (available > 0) {
|
|
let url = `/part/${row.part}/?display=part-stock`;
|
|
|
|
html = renderLink(available, url);
|
|
|
|
if (row.available_variant_stock && row.available_variant_stock > 0) {
|
|
html += makeIconBadge('fa-info-circle icon-blue', '{% trans "Includes variant stock" %}');
|
|
}
|
|
} else {
|
|
html += `<span class='badge rounded-pill bg-danger'>{% trans "No Stock Available" %}</span>`;
|
|
}
|
|
|
|
if (required > 0) {
|
|
if (available >= required) {
|
|
html += makeIconBadge('fa-check-circle icon-green', '{% trans "Sufficient stock available" %}');
|
|
} else {
|
|
html += makeIconBadge('fa-times-circle icon-red', '{% trans "Insufficient stock available" %}');
|
|
}
|
|
}
|
|
|
|
return html;
|
|
},
|
|
},
|
|
);
|
|
|
|
columns.push(
|
|
{
|
|
field: 'allocated',
|
|
title: '{% trans "Allocated" %}',
|
|
switchable: false,
|
|
sortable: true,
|
|
formatter: function(value, row, index, field) {
|
|
return makeProgressBar(row.allocated, row.quantity, {
|
|
id: `order-line-progress-${row.pk}`,
|
|
});
|
|
},
|
|
sorter: function(valA, valB, rowA, rowB) {
|
|
|
|
var A = rowA.allocated;
|
|
var B = rowB.allocated;
|
|
|
|
if (A == 0 && B == 0) {
|
|
return (rowA.quantity > rowB.quantity) ? 1 : -1;
|
|
}
|
|
|
|
var progressA = parseFloat(A) / rowA.quantity;
|
|
var progressB = parseFloat(B) / rowB.quantity;
|
|
|
|
return (progressA < progressB) ? 1 : -1;
|
|
}
|
|
},
|
|
);
|
|
}
|
|
|
|
columns.push({
|
|
field: 'shipped',
|
|
title: '{% trans "Shipped" %}',
|
|
switchable: false,
|
|
sortable: true,
|
|
formatter: function(value, row) {
|
|
return makeProgressBar(row.shipped, row.quantity, {
|
|
id: `order-line-shipped-${row.pk}`
|
|
});
|
|
},
|
|
sorter: function(valA, valB, rowA, rowB) {
|
|
var A = rowA.shipped;
|
|
var B = rowB.shipped;
|
|
|
|
if (A == 0 && B == 0) {
|
|
return (rowA.quantity > rowB.quantity) ? 1 : -1;
|
|
}
|
|
|
|
var progressA = parseFloat(A) / rowA.quantity;
|
|
var progressB = parseFloat(B) / rowB.quantity;
|
|
|
|
return (progressA < progressB) ? 1 : -1;
|
|
}
|
|
});
|
|
|
|
columns.push({
|
|
field: 'notes',
|
|
title: '{% trans "Notes" %}',
|
|
});
|
|
|
|
columns.push({
|
|
field: 'link',
|
|
title: '{% trans "Link" %}',
|
|
formatter: function(value) {
|
|
if (value) {
|
|
return renderLink(value, value);
|
|
}
|
|
}
|
|
});
|
|
|
|
columns.push({
|
|
field: 'buttons',
|
|
switchable: false,
|
|
formatter: function(value, row, index, field) {
|
|
let pk = row.pk;
|
|
let buttons = '';
|
|
|
|
// Construct a set of buttons to display
|
|
if (row.part && row.part_detail) {
|
|
let part = row.part_detail;
|
|
|
|
if (options.allow_edit && (row.shipped < row.quantity)) {
|
|
if (part.trackable) {
|
|
buttons += makeIconButton('fa-hashtag icon-green', 'button-add-by-sn', pk, '{% trans "Allocate Serial Numbers" %}');
|
|
}
|
|
buttons += makeIconButton('fa-sign-in-alt icon-green', 'button-add', pk, '{% trans "Allocate stock" %}');
|
|
if (part.purchaseable) {
|
|
buttons += makeIconButton('fa-shopping-cart', 'button-buy', row.part, '{% trans "Purchase stock" %}');
|
|
}
|
|
|
|
if (part.assembly) {
|
|
buttons += makeIconButton('fa-tools', 'button-build', row.part, '{% trans "Build stock" %}');
|
|
}
|
|
}
|
|
}
|
|
|
|
buttons += makeIconButton('fa-dollar-sign icon-green', 'button-price', pk, '{% trans "Calculate price" %}');
|
|
|
|
if (options.allow_edit) {
|
|
buttons += makeCopyButton('button-duplicate', pk, '{% trans "Duplicate line item" %}');
|
|
buttons += makeEditButton('button-edit', pk, '{% trans "Edit line item" %}');
|
|
}
|
|
|
|
if (options.allow_delete) {
|
|
var delete_disabled = false;
|
|
|
|
var title = '{% trans "Delete line item" %}';
|
|
|
|
if (row.shipped) {
|
|
delete_disabled = true;
|
|
title = '{% trans "Cannot be deleted as items have been shipped" %}';
|
|
} else if (row.allocated) {
|
|
delete_disabled = true;
|
|
title = '{% trans "Cannot be deleted as items have been allocated" %}';
|
|
}
|
|
|
|
// Prevent deletion of the line item if items have been allocated or shipped!
|
|
buttons += makeDeleteButton('button-delete', pk, title, {disabled: delete_disabled});
|
|
}
|
|
|
|
return wrapButtons(buttons);
|
|
}
|
|
});
|
|
|
|
function reloadTable() {
|
|
$(table).bootstrapTable('refresh');
|
|
reloadTotal();
|
|
}
|
|
|
|
// Configure callback functions once the table is loaded
|
|
function setupCallbacks() {
|
|
|
|
// Callback for duplicating line items
|
|
$(table).find('.button-duplicate').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
inventreeGet(`{% url "api-so-line-list" %}${pk}/`, {}, {
|
|
success: function(data) {
|
|
|
|
let fields = soLineItemFields();
|
|
|
|
constructForm('{% url "api-so-line-list" %}', {
|
|
method: 'POST',
|
|
fields: fields,
|
|
data: data,
|
|
title: '{% trans "Duplicate Line Item" %}',
|
|
refreshTable: table,
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
// Callback for editing line items
|
|
$(table).find('.button-edit').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
constructForm(`{% url "api-so-line-list" %}${pk}/`, {
|
|
fields: soLineItemFields(),
|
|
title: '{% trans "Edit Line Item" %}',
|
|
onSuccess: reloadTable,
|
|
});
|
|
});
|
|
|
|
// Callback for deleting line items
|
|
$(table).find('.button-delete').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
constructForm(`{% url "api-so-line-list" %}${pk}/`, {
|
|
method: 'DELETE',
|
|
title: '{% trans "Delete Line Item" %}',
|
|
onSuccess: reloadTable,
|
|
});
|
|
});
|
|
|
|
// Callback for allocating stock items by serial number
|
|
$(table).find('.button-add-by-sn').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
inventreeGet(`{% url "api-so-line-list" %}${pk}/`, {},
|
|
{
|
|
success: function(response) {
|
|
|
|
constructForm(`{% url "api-so-list" %}${options.order}/allocate-serials/`, {
|
|
method: 'POST',
|
|
title: '{% trans "Allocate Serial Numbers" %}',
|
|
fields: {
|
|
line_item: {
|
|
value: pk,
|
|
hidden: true,
|
|
},
|
|
quantity: {},
|
|
serial_numbers: {},
|
|
shipment: {
|
|
filters: {
|
|
order: options.order,
|
|
shipped: false,
|
|
},
|
|
auto_fill: true,
|
|
}
|
|
},
|
|
refreshTable: table,
|
|
});
|
|
}
|
|
}
|
|
);
|
|
});
|
|
|
|
// Callback for allocation stock items to the order
|
|
$(table).find('.button-add').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
var line_item = $(table).bootstrapTable('getRowByUniqueId', pk);
|
|
|
|
allocateStockToSalesOrder(
|
|
options.order,
|
|
[
|
|
line_item
|
|
],
|
|
{
|
|
order: options.order,
|
|
reference: options.reference,
|
|
success: function() {
|
|
// Reload this table
|
|
$(table).bootstrapTable('refresh');
|
|
|
|
// Reload the pending shipment table
|
|
$('#pending-shipments-table').bootstrapTable('refresh');
|
|
}
|
|
}
|
|
);
|
|
});
|
|
|
|
// Callback for creating a new build
|
|
$(table).find('.button-build').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
// Extract the row data from the table!
|
|
var idx = $(this).closest('tr').attr('data-index');
|
|
|
|
var row = $(table).bootstrapTable('getData')[idx];
|
|
|
|
var quantity = 1;
|
|
|
|
if (row.allocated < row.quantity) {
|
|
quantity = row.quantity - row.allocated;
|
|
}
|
|
|
|
// Create a new build order
|
|
newBuildOrder({
|
|
part: pk,
|
|
sales_order: options.order,
|
|
quantity: quantity,
|
|
success: reloadTable,
|
|
...options
|
|
});
|
|
});
|
|
|
|
// Callback for purchasing parts
|
|
$(table).find('.button-buy').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
|
|
inventreeGet(
|
|
`/api/part/${pk}/`,
|
|
{},
|
|
{
|
|
success: function(part) {
|
|
orderParts(
|
|
[part],
|
|
{}
|
|
);
|
|
}
|
|
}
|
|
);
|
|
});
|
|
|
|
// Callback for displaying price
|
|
$(table).find('.button-price').click(function() {
|
|
var pk = $(this).attr('pk');
|
|
var idx = $(this).closest('tr').attr('data-index');
|
|
var row = $(table).bootstrapTable('getData')[idx];
|
|
|
|
launchModalForm(
|
|
'{% url "line-pricing" %}',
|
|
{
|
|
submit_text: '{% trans "Calculate price" %}',
|
|
data: {
|
|
line_item: pk,
|
|
quantity: row.quantity,
|
|
},
|
|
buttons: [
|
|
{
|
|
name: 'update_price',
|
|
title: '{% trans "Update Unit Price" %}'
|
|
},
|
|
],
|
|
success: reloadTable,
|
|
}
|
|
);
|
|
});
|
|
}
|
|
|
|
$(table).inventreeTable({
|
|
onPostBody: setupCallbacks,
|
|
name: 'salesorderlineitems',
|
|
sidePagination: 'client',
|
|
formatNoMatches: function() {
|
|
return '{% trans "No matching line items" %}';
|
|
},
|
|
queryParams: filters,
|
|
original: options.params,
|
|
url: options.url,
|
|
showFooter: true,
|
|
uniqueId: 'pk',
|
|
detailView: show_detail,
|
|
detailViewByClick: false,
|
|
buttons: constructExpandCollapseButtons(table),
|
|
detailFilter: function(index, row) {
|
|
if (options.open) {
|
|
// Order is pending
|
|
return row.allocated > 0;
|
|
} else {
|
|
return row.shipped > 0;
|
|
}
|
|
},
|
|
detailFormatter: function(index, row, element) {
|
|
if (options.open) {
|
|
return showAllocationSubTable(
|
|
index, row, element,
|
|
{
|
|
...options,
|
|
queryParams: {
|
|
part: row.part,
|
|
order: row.order,
|
|
}
|
|
}
|
|
);
|
|
} else {
|
|
return showFulfilledSubTable(index, row, element, options);
|
|
}
|
|
},
|
|
columns: columns,
|
|
});
|
|
}
|