Merge pull request #3002 from SchrodingersGat/order-form-fix

Fix "fields" attribute for PurchaseOrderLineItem edit form
This commit is contained in:
Oliver 2022-05-16 09:29:03 +10:00 committed by GitHub
commit 8052d78311
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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');