We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see file of proto/ledgers/closing_balance_service.proto
The text was updated successfully, but these errors were encountered:
message AccountBalance { string id = 1; string company_id = 2; ChartOfAccount chart_of_account = 3; string period = 4; double beginning_balance = 5; double debit = 6; double credit = 7; double ending_balance = 8; string closing_at = 9; string closing_by = 10; } message AccountBalances { repeated AccountBalance balance = 1; }
message ArBalance { string id = 1; string company_id = 2; string period = 3; double beginning_balance = 4; double amount = 5; double ending_balance = 6; string closing_at = 7; string closing_by = 8; } message ArBalances { repeated ArBalance balance = 1; }
message DebtBalance { string id = 1; string company_id = 2; string period = 3; double beginning_balance = 4; double amount = 5; double ending_balance = 6; string closing_at = 7; string closing_by = 8; } message DebtBalances { repeated DebtBalance balance = 1; }
service ClosingBalanceService { rpc Closing(StringMessage) returns (BoolMessage) {} rpc ViewAccountBalance(StringMessage) returns (AccountBalance) {} rpc ViewDebtBalance(StringMessage) returns (DebtBalance) {} rpc ViewArBalance(StringMessage) returns (ArBalance) {} rpc ListAccountBalance(EmptyMessage) returns (AccountBalances) {} rpc ListDebtBalance(EmptyMessage) returns (DebtBalances) {} rpc ListArBalance(EmptyMessage) returns (ArBalances) {} }
Sorry, something went wrong.
jacky-htg
No branches or pull requests
see file of proto/ledgers/closing_balance_service.proto
The text was updated successfully, but these errors were encountered: