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/general_journal_service.proto
The text was updated successfully, but these errors were encountered:
enum TransactionType { CASH_RECEIPT = 0; CASH_PAYMENT = 1; BANK_RECEIPT = 2; BANK_PAYMENT = 3; } message GeneralJournal { string id = 1; string company_id = 2; string code = 3; string date = 4; string name = 5; TransactionType transaction_type = 6; bytes transaction = 7; string created_at = 8; string created_by = 9; string updated_at = 10; string updated_by = 11; }
enum DebitCredit { DEBIT = 0; CREDIT = 1; } message GeneralJournalDetail { string id = 1; GeneralJournal general_journal = 2; ChartOfAccount chart_of_account = 3; string name = 4; double amount = 5; DebitCredit debit_credit = 6; }
service GeneralJournalService { rpc List(EmptyMessage) returns (stream GeneralJournal) {} rpc Posting(Id) returns (GeneralLedger) {} }
Sorry, something went wrong.
jacky-htg
No branches or pull requests
see file of proto/ledgers/general_journal_service.proto
The text was updated successfully, but these errors were encountered: