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 proto file proto/ledgers/chart_of_account_service.proto
The text was updated successfully, but these errors were encountered:
message AccountType { string id = 1; string name = 2; } message ChartOfAccount { string id = 1; string company_id = 2; AccountType account_type = 3; ChartOfAccount parent = 4; string code = 5; string name = 6; string created_at = 7; string created_by = 8; string updated_at = 9; string updated_by = 10; } message ChartOfAccounts { repeated ChartOfAccount chart_of_account = 1; }
service ChartOfAccountService { rpc Create(ChartOfAccount) returns (ChartOfAccount) {} rpc Update(ChartOfAccount) returns (ChartOfAccount) {} rpc List(EmptyMessage) returns (ChartOfAccounts) {} rpc Delete(Id) returns (BoolMessage) {} }
Sorry, something went wrong.
[FEAT][#6] add coa service
a061d38
[FEAT][#6] add coa service (#22)
0a6daf4
jacky-htg
Successfully merging a pull request may close this issue.
see proto file proto/ledgers/chart_of_account_service.proto
The text was updated successfully, but these errors were encountered: