Fix "fields" attribute for PurchaseOrderLineItem edit form

- The 'order' field was not being included
This commit is contained in:
Oliver 2022-05-16 09:25:20 +10:00
parent c3433128b5
commit 3614e09211

View File

@ -1568,23 +1568,10 @@ function loadPurchaseOrderLineItemTable(table, options={}) {
$(table).find('.button-line-edit').click(function() {
var pk = $(this).attr('pk');
var fields = poLineItemFields(options);
constructForm(`/api/order/po-line/${pk}/`, {
fields: {
part: {
filters: {
part_detail: true,
supplier_detail: true,
supplier: options.supplier,
}
},
quantity: {},
reference: {},
purchase_price: {},
purchase_price_currency: {},
target_date: {},
destination: {},
notes: {},
},
fields: fields,
title: '{% trans "Edit Line Item" %}',
onSuccess: function() {
$(table).bootstrapTable('refresh');