Esempio n. 1
0
 def _create_from_draft(
     self, obj: types.InventoryEntryDraft, id: typing.Optional[str] = None
 ) -> types.InventoryEntry:
     object_id = str(uuid.UUID(id) if id is not None else uuid.uuid4())
     return types.InventoryEntry(
         id=str(object_id),
         version=1,
         created_at=datetime.datetime.now(),
         expected_delivery=obj.expected_delivery,
         last_modified_at=datetime.datetime.now(),
         quantity_on_stock=obj.quantity_on_stock,
         restockable_in_days=obj.restockable_in_days,
         sku=obj.sku,
         supply_channel=obj.supply_channel,
         custom=utils.create_from_draft(obj.custom),
     )
 def post_load(self, data):
     return types.InventoryEntry(**data)