Added supplier_id

This commit is contained in:
Petri Asikainen 2022-02-24 11:47:04 +02:00
parent cc475abf8c
commit 32c95f8077

View file

@ -44,6 +44,9 @@
.PARAMETER purchase_date
Date of asset purchase
.PARAMETER supplier_id
Supplier id of the Asset
.PARAMETER requestable
Whether or not the asset can be requested by users with the permission to request assets
@ -122,6 +125,9 @@ function Set-SnipeitAsset() {
[datetime]$purchase_date,
[parameter(mandatory = $false)]
[int]$supplier_id,
[bool]$requestable,
[bool]$archived,