Skip to content

Commit

Permalink
Merge pull request #70 from LayerXcom/feature/manual-journal-receipt-ids
Browse files Browse the repository at this point in the history
feat(manual-journals): Add receipt_ids fields
  • Loading branch information
yyoshiki41 authored Jul 14, 2022
2 parents 26dfb9b + 518cb34 commit c69c95f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions manual_journals.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ type ManualJournal struct {
TxnNumber *string `json:"txn_number"`
// 貸借行一覧(配列): 貸借合わせて100行まで登録できます。
Details []ManualJournalDetails `json:"details"`
// 証憑ファイルID(ファイルボックスのファイルID)(配列)
ReceiptIDs []uint64 `json:"receipt_ids"`
}

type ManualJournalDetails struct {
Expand Down Expand Up @@ -97,6 +99,8 @@ type CreateManualJournalParams struct {
// 決算整理仕訳フラグ(falseまたは未指定の場合: 日常仕訳)
Adjustment bool `json:"adjustment,omitempty"`
CreateManualJournalParamsDetails []CreateManualJournalParamsDetail `json:"details"`
// 証憑ファイルID(ファイルボックスのファイルID)(配列)
ReceiptIDs []uint64 `json:"receipt_ids,omitempty"`
}

type CreateManualJournalParamsDetail struct {
Expand Down Expand Up @@ -138,6 +142,8 @@ type UpdateManualJournalParams struct {
// 決算整理仕訳フラグ(falseまたは未指定の場合: 日常仕訳)
Adjustment bool `json:"adjustment,omitempty"`
Details []UpdateManualJournalParamsDetails `json:"details"`
// 証憑ファイルID(ファイルボックスのファイルID)(配列)
ReceiptIDs []uint64 `json:"receipt_ids,omitempty"`
}

// ManualJournalUpdateParamsDetails 貸借行一覧(配列): 貸借合わせて100行まで登録できます。
Expand Down

0 comments on commit c69c95f

Please sign in to comment.