putWmsStocksdocumentsDocuments

Operation Id:
wms/stocksdocuments/documents/put [Official Documentaction]
Methods

  • stockDocumentId Integer
  • stockDocumentType 'pz'|'pw'|'px'|'rx'|'rw'|'mm'
  • stockDocumentNumber String
  • stockId Integer
  • stockSourceId Integer
  • note String
  • productsInPreorder 'y'|'n'
  • delivererId Integer
  • wnt 'national_VAT_invoice'|'other_purchase_document'|'invoice_without_VAT'|'imports_from_outside_the_EU'
  • saleDocumentCreationDate String
  • deliveryOnTheWayPlannedDeliveryDate String
  • confirmed 'open'|'on_the_way'
  • currencyForPurchasePrice String
  • currencyForPurchasePriceRate Number
  • currencyForPurchasePriceRateType 'custom'|'currentDay'|'customDay'|'previousDay'
  • currencyForPurchasePriceRateDate String
  • priceType 'brutto'|'netto'
  • queueType 'fifo'|'lifo'
  • verificationDate String
  • verificationUser String
Examples

This function modifies the stock document with a stock document ID of 7, sets its stock document type to "mm", and adds a note.

const result = await idosellRequest.putWmsStocksdocumentsDocuments
	.stockDocumentId(7)
	.stockDocumentType("mm")
	.note("note")
	.exec()