INPUT_OBJECT

PurchaseOrderDeliveryCreateInput

link GraphQL Schema definition

1input PurchaseOrderDeliveryCreateInput {
2
3purchaseOrder: PurchaseOrderInput!
4
5ETA: Date
6
7# Ex Factory date, which is when the goods leave the factory
8exFactoryDate: DateTimeTz
9
10# Exactly one input field should be provided
11preferredWarehouse: WarehouseInput
12
13shippingCost: MonetaryValueInput
14
15otherCosts: MonetaryValueInput
16
17shippingDistributionMethod: ShippingDistributionMethod!
18
19# Centra user with Supplier Module access rights
20adminUser: AdminUserInput!
21
22addUnlinkedLines: [PurchaseOrderDeliveryUnlinkedLineCreateInput!]
23
24addLinkedLines: [PurchaseOrderDeliveryLinkedLineCreateInput!]
25}

link Required by