Merge pull request 'Refactor: Replace wholesaler with supplier terminology and add fulfillment consumables logic' (#1) from testing into main
Reviewed-on: Sfera/sfera#1
This commit is contained in:
@ -80,6 +80,30 @@ export const GET_MY_SUPPLIES = gql`
|
||||
supplier
|
||||
minStock
|
||||
currentStock
|
||||
usedStock
|
||||
imageUrl
|
||||
createdAt
|
||||
updatedAt
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const GET_MY_FULFILLMENT_SUPPLIES = gql`
|
||||
query GetMyFulfillmentSupplies {
|
||||
myFulfillmentSupplies {
|
||||
id
|
||||
name
|
||||
description
|
||||
price
|
||||
quantity
|
||||
unit
|
||||
category
|
||||
status
|
||||
date
|
||||
supplier
|
||||
minStock
|
||||
currentStock
|
||||
usedStock
|
||||
imageUrl
|
||||
createdAt
|
||||
updatedAt
|
||||
@ -848,7 +872,7 @@ export const GET_EXTERNAL_ADS = gql`
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
`;
|
||||
|
||||
// Админ запросы
|
||||
export const ADMIN_ME = gql`
|
||||
@ -950,6 +974,7 @@ export const GET_PENDING_SUPPLIES_COUNT = gql`
|
||||
supplyOrders
|
||||
ourSupplyOrders
|
||||
sellerSupplyOrders
|
||||
incomingSupplierOrders
|
||||
incomingRequests
|
||||
total
|
||||
}
|
||||
|
Reference in New Issue
Block a user