Merge branch 'staging'

This commit is contained in:
skeris 2024-05-06 22:23:15 +03:00
commit 9d5dff68ab
3 changed files with 5 additions and 17 deletions

@ -22,27 +22,15 @@ services:
- YOOMONEY_WEBHOOKS_URL=http://treasurer-mock-staging:8080/webhooks - YOOMONEY_WEBHOOKS_URL=http://treasurer-mock-staging:8080/webhooks
- YOOMONEY_PAYMENTS_URL=https://api.yookassa.ru/v3/payments - YOOMONEY_PAYMENTS_URL=https://api.yookassa.ru/v3/payments
- MONGO_HOST=10.6.0.11 - MONGO_HOST=10.8.0.6
- MONGO_PORT=27017 - MONGO_PORT=27017
- MONGO_USER=$MONGO_USER - MONGO_USER=$MONGO_USER
- MONGO_PASSWORD=$MONGO_PASSWORD - MONGO_PASSWORD=$MONGO_PASSWORD
- MONGO_DB_NAME=treasurer - MONGO_DB_NAME=treasurer
- MONGO_AUTH=treasurer - MONGO_AUTH=treasurer
ports: ports:
- 8085:8085 - 10.8.0.6:8085:8085
- 9085:9085 - 10.8.0.6:9085:9085
networks:
- backend_external
- default
depends_on:
- treasurer-mock-staging
treasurer-mock-staging:
hostname: treasurer-mock-staging
container_name: treasurermock-container-staging
image: 'wiremock/wiremock:2.35.0'
tty: true
ports:
- 8080:8080
networks: networks:
- backend_external - backend_external
- default - default

@ -23,7 +23,7 @@ type Item struct {
Description string `json:"description,omitempty"` Description string `json:"description,omitempty"`
Amount ReceiptAmount `json:"amount,omitempty"` Amount ReceiptAmount `json:"amount,omitempty"`
VatCode int `json:"vat_code,omitempty"` VatCode int `json:"vat_code,omitempty"`
Quantity string `json:"quantity,omitempty"` Quantity int64 `json:"quantity,omitempty"`
Measure string `json:"measure,omitempty"` Measure string `json:"measure,omitempty"`
PaymentSubject string `json:"payment_subject,omitempty"` PaymentSubject string `json:"payment_subject,omitempty"`
PaymentMode string `json:"payment_mode,omitempty"` PaymentMode string `json:"payment_mode,omitempty"`

@ -24,7 +24,7 @@ func ProtoItem2ReceiptItem(in *treasurer.Item) yandex.Item {
Currency: in.Currency, Currency: in.Currency,
}, },
VatCode: 1, VatCode: 1,
Quantity: in.Quantity, Quantity: 1,
Measure: in.Measure, Measure: in.Measure,
PaymentSubject: "service", PaymentSubject: "service",
PaymentMode: "full_prepayment", PaymentMode: "full_prepayment",