# Sitoo POS Adapter - Order process
Deprecated
The POS and Sitoo Adapter is deprecated and will not be supported on the next generation platform Norce Commerce. Read about it
here: [Difference between Norce commerce and Norce Storm](/solution-portal/upgrading-to-norce-commerce).
## Online Order - Shipped from warehouse
```mermaid
%%{init: {'theme':'default'}}%%
sequenceDiagram
autonumber
participant E as ERP
participant N as Norce [Storm]
participant S as Store(s) (Sitoo)
note over N: Order is created in Norce and sent both Sitoo and the ERP
par Sent to POS
N-->>S: Order is sent to Sitoo by adapter
and send to ERP
N->>E: Normal order integration to ERP
end
```
## Online Order - Shipped from store
> To be developed
## Online Order - Pick up in store
ERP decides what should be shipped from Store and send a shipment to Store for goods not in stock.
```mermaid
%%{init: {'theme':'default'}}%%
sequenceDiagram
autonumber
participant E as ERP
participant N as Norce [Storm]
participant S as Store(s) (Sitoo)
Note over N: Order is created in Norce and sent both Sitoo and the ERP
par Sent to POS
N-->>S: Order is sent to Sitoo by adapter
and send to ERP
N->>E: Normal order integration to ERP
end
Note over N: Missing shipment is sent to store,
at the same time as a shipment notification is passed throught Norce to Sitoo.
par Shipment of goods
E-->>S: Shipment is sent to Store
and Digital notification
E->>N: Shipment note
N->>S: Shipment passed on to Sitoo
end
S->>N: Ask to send notification to customer "ready for pickup"
```
## Store - Regular sales
```mermaid
%%{init: {'theme':'default'}}%%
sequenceDiagram
autonumber
participant E as ERP
participant N as Norce [Storm]
participant S as Store(s) (Sitoo)
note over N: Order is created in Store
and sent to Norce and passed on to ERP
S-->>N: Send receipt,
created in Norce as an external order
N-->>E: Normal order integration to ERP,
but with the external order type
note over E: Not fulfilled,
already delivered from Store
```
## Store Order - Shipped from warehouse
```mermaid
%%{init: {'theme':'default'}}%%
sequenceDiagram
autonumber
participant E as ERP
participant N as Norce [Storm]
participant S as Store(s) (Sitoo)
note over N: Order is created in Store and sent to Norce and passed on to ERP
S-->>N: Send order, created in Norce
N-->>E: Normal order integration to ERP
note over E: Fulfilled from ERP
```