32 lines
629 B
JavaScript
32 lines
629 B
JavaScript
let customPOConfig = {
|
|
incotermsId: 0,
|
|
profInvoiceNo: 0,
|
|
profInvoiceDate: new Date().toISOString().split('T')[0],
|
|
shippingInstructionId: 0,
|
|
podId: 0,
|
|
paymentTermsId: 0,
|
|
supplierId: 0,
|
|
supplierName: '',
|
|
deliveryDate: new Date().toISOString().split('T')[0],
|
|
deliverTo: '',
|
|
itemName: '',
|
|
specification: '',
|
|
qty: 0,
|
|
uomName: '',
|
|
uomId: 0
|
|
};
|
|
|
|
let ItemName;
|
|
let Specification;
|
|
let Qty;
|
|
let UOMName;
|
|
let UOMId;
|
|
let IncotermsId;
|
|
let ProfInvoiceNo;
|
|
let ProfInvoiceDate;
|
|
let ShippingInstructionId;
|
|
let PoId;
|
|
let PaymentTermsId;
|
|
let SupplierId;
|
|
let DeliverTo;
|
|
let DeliveryDate; |