Merge pull request #1828 from SchrodingersGat/supplier-reference-fiix

Add supplier_reference field to form
This commit is contained in:
Oliver 2021-07-18 11:04:14 +10:00 committed by GitHub
commit 8c1248d74b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -170,6 +170,7 @@ $("#edit-order").click(function() {
supplier: {
},
{% endif %}
supplier_reference: {},
description: {},
target_date: {
icon: 'fa-calendar-alt',

View File

@ -163,6 +163,7 @@ $("#edit-order").click(function() {
customer: {
},
{% endif %}
customer_reference: {},
description: {},
target_date: {
icon: 'fa-calendar-alt',

View File

@ -14,6 +14,7 @@ function createSalesOrder(options={}) {
customer: {
value: options.customer,
},
customer_reference: {},
description: {},
target_date: {
icon: 'fa-calendar-alt',
@ -44,6 +45,7 @@ function createPurchaseOrder(options={}) {
supplier: {
value: options.supplier,
},
supplier_reference: {},
description: {},
target_date: {
icon: 'fa-calendar-alt',