diff --git a/internal/interface/controller/http/wallet_client/controllers.go b/internal/interface/controller/http/wallet_client/controllers.go index c8d83b1..5dad922 100644 --- a/internal/interface/controller/http/wallet_client/controllers.go +++ b/internal/interface/controller/http/wallet_client/controllers.go @@ -152,7 +152,6 @@ func (receiver *WalletController) GetPaymentLinkBankCard(ctx context.Context, re ReturnURL: request.Body.ReturnURL, Customer: &treasurer.Customer{ FullName: account.Name.Orgname + ". " + account.Name.FirstName + " " + account.Name.Secondname, - INN: ver.TaxNumber, Email: auth.Login, Phone: auth.PhoneNumber, }, @@ -183,7 +182,6 @@ func (receiver *WalletController) GetPaymentLinkYooMoney(ctx context.Context, re ReturnURL: request.Body.ReturnURL, Customer: &treasurer.Customer{ FullName: account.Name.Orgname + ", " + account.Name.FirstName + " " + account.Name.Secondname, - INN: ver.TaxNumber, Email: auth.Login, Phone: auth.PhoneNumber, }, @@ -214,7 +212,6 @@ func (receiver *WalletController) GetPaymentLinkSberPay(ctx context.Context, req ReturnURL: request.Body.ReturnURL, Customer: &treasurer.Customer{ FullName: account.Name.Orgname + ", " + account.Name.FirstName + " " + account.Name.Secondname, - INN: ver.TaxNumber, Email: auth.Login, Phone: auth.PhoneNumber, }, @@ -245,7 +242,6 @@ func (receiver *WalletController) GetPaymentLinkTinkoff(ctx context.Context, req ReturnURL: request.Body.ReturnURL, Customer: &treasurer.Customer{ FullName: account.Name.Orgname + ", " + account.Name.FirstName + " " + account.Name.Secondname, - INN: ver.TaxNumber, Email: auth.Login, Phone: auth.PhoneNumber, }, @@ -276,7 +272,6 @@ func (receiver *WalletController) GetPaymentLinkSBP(ctx context.Context, request ReturnURL: request.Body.ReturnURL, Customer: &treasurer.Customer{ FullName: account.Name.Orgname + ", " + account.Name.FirstName + " " + account.Name.Secondname, - INN: ver.TaxNumber, Email: auth.Login, Phone: auth.PhoneNumber, }, @@ -307,7 +302,6 @@ func (receiver *WalletController) GetPaymentLinkB2B(ctx context.Context, request ReturnURL: request.Body.ReturnURL, Customer: &treasurer.Customer{ FullName: account.Name.Orgname + ", " + account.Name.FirstName + " " + account.Name.Secondname, - INN: ver.TaxNumber, Email: auth.Login, Phone: auth.PhoneNumber, },