Compare commits
1 Commits
master
...
4685-avail
Author | SHA1 | Date |
---|---|---|
Juan Ferrer | 9f960c2820 |
|
@ -49,4 +49,4 @@ npm run consumer
|
||||||
|
|
||||||
* [Zongji](https://github.com/nevill/zongji)
|
* [Zongji](https://github.com/nevill/zongji)
|
||||||
* [MySQL2](https://github.com/sidorares/node-mysql2#readme)
|
* [MySQL2](https://github.com/sidorares/node-mysql2#readme)
|
||||||
* [RabbitMQ] (https://www.rabbitmq.com/)
|
* [RabbitMQ](https://www.rabbitmq.com/)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mycdc",
|
"name": "mycdc",
|
||||||
"version": "0.0.14",
|
"version": "0.0.15",
|
||||||
"author": "Verdnatura Levante SL",
|
"author": "Verdnatura Levante SL",
|
||||||
"description": "Asynchronous DB calculations reading the binary log",
|
"description": "Asynchronous DB calculations reading the binary log",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
mode: changes
|
||||||
|
query: CALL vn.itemComparative_refresh(?, ?, ?)
|
||||||
|
includeSchema:
|
||||||
|
vn:
|
||||||
|
ticket:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- shipped
|
||||||
|
- warehouseFk
|
||||||
|
- isDeleted
|
||||||
|
- clientFk
|
||||||
|
events:
|
||||||
|
- updaterows
|
||||||
|
sale:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- ticketFk
|
||||||
|
- itemFk
|
||||||
|
- quantity
|
||||||
|
- priceFixed
|
|
@ -0,0 +1,76 @@
|
||||||
|
query:
|
||||||
|
travel: CALL stock.buyAvailable_refresh('travel', :id)
|
||||||
|
entry: CALL stock.buyAvailable_refresh('entry', :id)
|
||||||
|
buy: CALL stock.buyAvailable_refresh('buy', :id)
|
||||||
|
ticket: CALL stock.outbound_refresh('ticket', :id)
|
||||||
|
sale: CALL stock.outbound_refresh('sale', :id)
|
||||||
|
order: CALL stock.outbound_refresh('order', :id)
|
||||||
|
orderRow: CALL stock.outbound_refresh('orderRow', :id)
|
||||||
|
includeSchema:
|
||||||
|
vn:
|
||||||
|
travel:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- landed
|
||||||
|
- shipped
|
||||||
|
- landingHour
|
||||||
|
- warehouseInFk
|
||||||
|
- warehouseOutFk
|
||||||
|
- isReceived
|
||||||
|
events:
|
||||||
|
- updaterows
|
||||||
|
entry:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- travelFk
|
||||||
|
- isRaid
|
||||||
|
events:
|
||||||
|
- updaterows
|
||||||
|
buy:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- entryFk
|
||||||
|
- itemFk
|
||||||
|
- quantity
|
||||||
|
- life
|
||||||
|
- isAlive
|
||||||
|
ticket:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- warehouseFk
|
||||||
|
- shipped
|
||||||
|
events:
|
||||||
|
- updaterows
|
||||||
|
sale:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- ticketFk
|
||||||
|
- itemFk
|
||||||
|
- quantity
|
||||||
|
- created
|
||||||
|
- isPicked
|
||||||
|
hedera:
|
||||||
|
order:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- id
|
||||||
|
- date_send
|
||||||
|
- address_id
|
||||||
|
- company_id
|
||||||
|
- customer_id
|
||||||
|
- confirmed
|
||||||
|
events:
|
||||||
|
- updaterows
|
||||||
|
orderRow:
|
||||||
|
key: id
|
||||||
|
columns:
|
||||||
|
- orderFk
|
||||||
|
- itemFk
|
||||||
|
- warehouseFk
|
||||||
|
- shipment
|
||||||
|
- amount
|
Loading…
Reference in New Issue