this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Default value for new fields

+2 -2
+1 -1
care/emr/resources/inventory/product/spec.py
··· 40 40 expiration_date: datetime.datetime | None = None 41 41 extensions: dict 42 42 standard_pack_size: int | None = None 43 - purchase_price: Decimal | None = Field(max_digits=20, decimal_places=6) 43 + purchase_price: Decimal | None = Field(None,max_digits=20, decimal_places=6) 44 44 45 45 46 46 @field_validator("extensions")
+1 -1
care/emr/resources/inventory/supply_delivery/spec.py
··· 50 50 51 51 status: SupplyDeliveryStatusOptions 52 52 supplied_item_condition: SupplyDeliveryConditionOptions | None = None 53 - total_purchase_price: Decimal | None = Field(max_digits=20, decimal_places=6) 53 + total_purchase_price: Decimal | None = Field(None,max_digits=20, decimal_places=6) 54 54 55 55 56 56 class SupplyDeliveryUpdateSpec(ExtensionValidator, BaseSupplyDeliverySpec):