public interface TrialBalanceApi
| Modifier and Type | Method and Description |
|---|---|
io.reactivex.Observable<TrialBsResponse> |
getTrialBs(Integer companyId,
Integer fiscalYear,
Integer startMonth,
Integer endMonth,
String startDate,
String endDate,
String accountItemDisplayType,
String breakdownDisplayType,
Integer partnerId,
String partnerCode,
Integer itemId,
String adjustment)
貸借対照表の取得
<h2 id=\"\">概要</h2> <p>指定した事業所の貸借対照表を取得する</p> <h2 id=\"_2\">定義</h2> <ul> <li> <p>created_at : 作成日時</p> </li> <li> <p>account_item_name : 勘定科目名</p> </li> <li> <p>hierarchy_level: 階層レベル</p> </li> <li> <p>parent_account_category_name: 上位勘定科目カテゴリー名</p> </li> <li> <p>opening_balance : 期首残高 </p> </li> <li> <p>debit_amount : 借方金額 </p> </li> <li> <p>credit_amount: 貸方金額 </p> </li> <li> <p>closing_balance : 期末残高 </p> </li> <li> <p>composition_ratio : 構成比</p> </li> <h2 id=\"_3\">注意点</h2> <ul> <li>会計年度が指定されない場合、現在の会計年度がデフォルトとなります。</li> <li>絞り込み条件の日付と、月または年度は同時に指定することはできません。</li> <li>up_to_dateがfalseの場合、残高の集計が完了していません。最新の集計結果を確認したい場合は、時間を空けて再度取得する必要があります。</li> </ul> <h2 id=\"_4\">レスポンスの例</h2> <blockquote> <p>GET https://api.freee.co.jp/api/1/reports/trial_bs?company_id=1&fiscal_year=2017&breakdown_display_type=partner</p> </blockquote> <pre><code>{ "trial_bs" : { "company_id" : 1, "fiscal_year" : 2017, "breakdown_display_type" : "partner", "created_at" : "2018-05-01 12:00:50" "balances" : [{ "account_item_id" : 1000, "account_item_name" : "現金", "hierarchy_level" : 2, "account_category_name" : "流動資産", "opening_balance" : 100000, "debit_amount" : 50000, "credit_amount" : 20000, "closing_balance" : 130000, "composition_ratio" : 0.25 "partners" : [{ "id" : 123, "name" : "freee", "opening_balance" : 100000, "debit_amount" : 50000, "credit_amount" : 20000, "closing_balance" : 130000, "composition_ratio" : 0.25 }, ...
|
io.reactivex.Observable<TrialBsThreeYearsResponse> |
getTrialBsThreeYears(Integer companyId,
Integer fiscalYear,
Integer startMonth,
Integer endMonth,
String startDate,
String endDate,
String accountItemDisplayType,
String breakdownDisplayType,
Integer partnerId,
String partnerCode,
Integer itemId,
String adjustment)
貸借対照表(3期間比較)の取得
<h2 id=\"\">概要</h2> <p>指定した事業所の貸借対照表(3期間比較)を取得する</p> <h2 id=\"_2\">定義</h2> <ul> <li> <p>created_at : 作成日時</p> </li> <li> <p>account_item_name : 勘定科目名</p> </li> <li> <p>hierarchy_level: 階層レベル</p> </li> <li> <p>parent_account_category_name: 上位勘定科目カテゴリー名</p> </li> <li> <p>two_years_before_closing_balance: 前々年度期末残高 </p> </li> <li> <p>last_year_closing_balance: 前年度期末残高 </p> </li> <li> <p>closing_balance : 期末残高 </p> </li> <li> <p>year_on_year : 前年比</p> </li> <h2 id=\"_3\">注意点</h2> <ul> <li>会計年度が指定されない場合、現在の会計年度がデフォルトとなります。</li> <li>絞り込み条件の日付と、月または年度は同時に指定することはできません。</li> <li>up_to_dateがfalseの場合、残高の集計が完了していません。最新の集計結果を確認したい場合は、時間を空けて再度取得する必要があります。</li> </ul> <h2 id=\"_4\">レスポンスの例</h2> <blockquote> <p>GET https://api.freee.co.jp/api/1/reports/trial_bs_three_years?company_id=1&fiscal_year=2017</p> </blockquote> <pre><code>{ "trial_bs_three_years" : { "company_id" : 1, "fiscal_year" : 2017, "created_at" : "2018-05-01 12:00:50" "balances" : [{ "account_item_id" : 1000, "account_item_name" : "現金", "hierarchy_level" : 2, "account_category_name" : "流動資産", "two_year_before_closing_balance" : 50000, "last_year_closing_balance" : 25000, "closing_balance" : 100000, "year_on_year" : 0.85 }, ...
|
io.reactivex.Observable<TrialBsTwoYearsResponse> |
getTrialBsTwoYears(Integer companyId,
Integer fiscalYear,
Integer startMonth,
Integer endMonth,
String startDate,
String endDate,
String accountItemDisplayType,
String breakdownDisplayType,
Integer partnerId,
String partnerCode,
Integer itemId,
String adjustment)
貸借対照表(前年比較)の取得
<h2 id=\"\">概要</h2> <p>指定した事業所の貸借対照表(前年比較)を取得する</p> <h2 id=\"_2\">定義</h2> <ul> <li> <p>created_at : 作成日時</p> </li> <li> <p>account_item_name : 勘定科目名</p> </li> <li> <p>hierarchy_level: 階層レベル</p> </li> <li> <p>parent_account_category_name: 上位勘定科目カテゴリー名</p> </li> <li> <p>last_year_closing_balance: 前年度期末残高 </p> </li> <li> <p>closing_balance : 期末残高 </p> </li> <h2 id=\"_3\">注意点</h2> <ul> <li>会計年度が指定されない場合、現在の会計年度がデフォルトとなります。</li> <li>絞り込み条件の日付と、月または年度は同時に指定することはできません。</li> <li>up_to_dateがfalseの場合、残高の集計が完了していません。最新の集計結果を確認したい場合は、時間を空けて再度取得する必要があります。</li> </ul> <h2 id=\"_4\">レスポンスの例</h2> <blockquote> <p>GET https://api.freee.co.jp/api/1/reports/trial_bs_two_years?company_id=1&fiscal_year=2017</p> </blockquote> <pre><code>{ "trial_bs_two_years" : { "company_id" : 1, "fiscal_year" : 2017, "created_at" : "2018-05-01 12:00:50" "balances" : [{ "account_item_id" : 1000, "account_item_name" : "現金", "hierarchy_level" : 2, "account_category_name" : "流動資産", "last_year_closing_balance" : 25000, "closing_balance" : 100000, "year_on_year" : 0.85 }, ...
|
io.reactivex.Observable<TrialPlResponse> |
getTrialPl(Integer companyId,
Integer fiscalYear,
Integer startMonth,
Integer endMonth,
String startDate,
String endDate,
String accountItemDisplayType,
String breakdownDisplayType,
Integer partnerId,
String partnerCode,
Integer itemId,
Integer sectionId,
String adjustment,
String costAllocation)
損益計算書の取得
<h2 id=\"\">概要</h2> <p>指定した事業所の損益計算書を取得する</p> <h2 id=\"_2\">定義</h2> <ul> <li> <p>created_at : 作成日時</p> </li> <li> <p>account_item_name : 勘定科目名</p> </li> <li> <p>hierarchy_level: 階層レベル</p> </li> <li> <p>parent_account_category_name: 上位勘定科目カテゴリー名</p> </li> <li> <p>opening_balance : 期首残高 </p> </li> <li> <p>debit_amount : 借方金額 </p> </li> <li> <p>credit_amount: 貸方金額 </p> </li> <li> <p>closing_balance : 期末残高 </p> </li> <li> <p>composition_ratio : 構成比</p> </li> <h2 id=\"_3\">注意点</h2> <ul> <li>会計年度が指定されない場合、現在の会計年度がデフォルトとなります。</li> <li>絞り込み条件の日付と、月または年度は同時に指定することはできません。</li> <li>up_to_dateがfalseの場合、残高の集計が完了していません。最新の集計結果を確認したい場合は、時間を空けて再度取得する必要があります。</li> <li>配賦仕訳の絞り込み(cost_allocation)は法人向けのベーシックプラン以上で利用可能です。</li> </ul> <h2 id=\"_4\">レスポンスの例</h2> <blockquote> <p>GET https://api.freee.co.jp/api/1/reports/trial_pl?company_id=1&fiscal_year=2017&breakdown_display_type=partner</p> </blockquote> <pre><code>{ "trial_pl" : { "company_id" : 1, "fiscal_year" : 2017, "breakdown_display_type" : "partner", "created_at" : "2018-05-01 12:00:50" "balances" : [{ "account_item_id" : 1500, "account_item_name" : "売上高", "hierarchy_level" : 2, "account_category_name" : "営業収益", "opening_balance" : 100000, "debit_amount" : 50000, "credit_amount" : 20000, "closing_balance" : 130000, "composition_ratio" : 0.25 "partners" : [{ "id" : 123, "name" : "freee", "opening_balance" : 100000, "debit_amount" : 50000, "credit_amount" : 20000, "closing_balance" : 130000, "composition_ratio" : 0.25 }, ...
|
io.reactivex.Observable<TrialPlSectionsResponse> |
getTrialPlSections(Integer companyId,
String sectionIds,
Integer fiscalYear,
Integer startMonth,
Integer endMonth,
String startDate,
String endDate,
String accountItemDisplayType,
String breakdownDisplayType,
Integer partnerId,
String partnerCode,
Integer itemId,
String adjustment,
String costAllocation)
損益計算書(部門比較)の取得
<h2 id=\"\">概要</h2> <p>指定した事業所の損益計算書(部門比較)を取得する</p> <h2 id=\"_2\">定義</h2> <ul> <li> <p>created_at : 作成日時</p> </li> <li> <p>account_item_name : 勘定科目名</p> </li> <li> <p>hierarchy_level: 階層レベル</p> </li> <li> <p>parent_account_category_name: 上位勘定科目カテゴリー名</p> </li> <li> <p>closing_balance : 期末残高 </p> </li> <h2 id=\"_3\">注意点</h2> <ul> <li>個人向けのプレミアムプラン、法人向けのビジネスプラン以上で利用可能なAPIです。対象外のプランでは401エラーを返却します。</li> <li>会計年度が指定されない場合、現在の会計年度がデフォルトとなります。</li> <li>絞り込み条件の日付と、月または年度は同時に指定することはできません。</li> <li>up_to_dateがfalseの場合、残高の集計が完了していません。最新の集計結果を確認したい場合は、時間を空けて再度取得する必要があります。</li> <li>配賦仕訳の絞り込み(cost_allocation)は法人向けのベーシックプラン以上で利用可能です。</li> </ul> <h2 id=\"_4\">レスポンスの例</h2> <blockquote> <p>GET https://api.freee.co.jp/api/1/reports/trial_pl_section?company_id=1&section_ids=1,2,3&fiscal_year=2017</p></p> </blockquote> <pre><code>{ "trial_pl_sections" : { "company_id" : 1, "section_ids" : "1,2,3", "fiscal_year" : 2017, "created_at" : "2018-05-01 12:00:50" "balances" : [{ "account_item_id" : 1500, "account_item_name" : "売上高", "hierarchy_level" : 2, "account_category_name" : "営業収益", "closing_balance" : 1000000, "sections" : [{ "id": 1 "name": "営業部", "closing_balance" : 100000 }, { "id": 2 "name": "広報部", "closing_balance" : 200000 }, { "id": 3 "name": "人事部", "closing_balance" : 300000 }, ...
|
io.reactivex.Observable<TrialPlThreeYearsResponse> |
getTrialPlThreeYears(Integer companyId,
Integer fiscalYear,
Integer startMonth,
Integer endMonth,
String startDate,
String endDate,
String accountItemDisplayType,
String breakdownDisplayType,
Integer partnerId,
String partnerCode,
Integer itemId,
Integer sectionId,
String adjustment,
String costAllocation)
損益計算書(3期間比較)の取得
<h2 id=\"\">概要</h2> <p>指定した事業所の損益計算書(3期間比較)を取得する</p> <h2 id=\"_2\">定義</h2> <ul> <li> <p>created_at : 作成日時</p> </li> <li> <p>account_item_name : 勘定科目名</p> </li> <li> <p>hierarchy_level: 階層レベル</p> </li> <li> <p>parent_account_category_name: 上位勘定科目カテゴリー名</p> </li> <li> <p>two_years_before_closing_balance: 前々年度期末残高 </p> </li> <li> <p>last_year_closing_balance: 前年度期末残高 </p> </li> <li> <p>closing_balance : 期末残高 </p> </li> <li> <p>year_on_year : 前年比</p> </li> <h2 id=\"_3\">注意点</h2> <ul> <li>会計年度が指定されない場合、現在の会計年度がデフォルトとなります。</li> <li>絞り込み条件の日付と、月または年度は同時に指定することはできません。</li> <li>up_to_dateがfalseの場合、残高の集計が完了していません。最新の集計結果を確認したい場合は、時間を空けて再度取得する必要があります。</li> <li>配賦仕訳の絞り込み(cost_allocation)は法人向けのベーシックプラン以上で利用可能です。</li> </ul> <h2 id=\"_4\">レスポンスの例</h2> <blockquote> <p>GET https://api.freee.co.jp/api/1/reports/trial_pl_three_years?company_id=1&fiscal_year=2017</p> </blockquote> <pre><code>{ "trial_pl_three_years" : { "company_id" : 1, "fiscal_year" : 2017, "created_at" : "2018-05-01 12:00:50" "balances" : [{ "account_item_id" : 1500, "account_item_name" : "売上高", "hierarchy_level" : 2, "account_category_name" : "営業収益", "two_year_before_closing_balance" : 50000, "last_year_closing_balance" : 25000, "closing_balance" : 100000, "year_on_year" : 0.85 }, ...
|
io.reactivex.Observable<TrialPlTwoYearsResponse> |
getTrialPlTwoYears(Integer companyId,
Integer fiscalYear,
Integer startMonth,
Integer endMonth,
String startDate,
String endDate,
String accountItemDisplayType,
String breakdownDisplayType,
Integer partnerId,
String partnerCode,
Integer itemId,
Integer sectionId,
String adjustment,
String costAllocation)
損益計算書(前年比較)の取得
<h2 id=\"\">概要</h2> <p>指定した事業所の損益計算書(前年比較)を取得する</p> <h2 id=\"_2\">定義</h2> <ul> <li> <p>created_at : 作成日時</p> </li> <li> <p>account_item_name : 勘定科目名</p> </li> <li> <p>hierarchy_level: 階層レベル</p> </li> <li> <p>parent_account_category_name: 上位勘定科目カテゴリー名</p> </li> <li> <p>last_year_closing_balance: 前年度期末残高 </p> </li> <li> <p>closing_balance : 期末残高 </p> </li> <li> <p>year_on_year : 前年比</p> </li> <h2 id=\"_3\">注意点</h2> <ul> <li>会計年度が指定されない場合、現在の会計年度がデフォルトとなります。</li> <li>絞り込み条件の日付と、月または年度は同時に指定することはできません。</li> <li>up_to_dateがfalseの場合、残高の集計が完了していません。最新の集計結果を確認したい場合は、時間を空けて再度取得する必要があります。</li> <li>配賦仕訳の絞り込み(cost_allocation)は法人向けのベーシックプラン以上で利用可能です。</li> </ul> <h2 id=\"_4\">レスポンスの例</h2> <blockquote> <p>GET https://api.freee.co.jp/api/1/reports/trial_pl_two_years?company_id=1&fiscal_year=2017</p> </blockquote> <pre><code>{ "trial_pl_two_years" : { "company_id" : 1, "fiscal_year" : 2017, "created_at" : "2018-05-01 12:00:50" "balances" : [{ "account_item_id" : 1500, "account_item_name" : "売上高", "hierarchy_level" : 2, "account_category_name" : "営業収益", "last_year_closing_balance" : 25000, "closing_balance" : 100000, "year_on_year" : 0.85 }, ...
|
@GET(value="api/1/reports/trial_bs") io.reactivex.Observable<TrialBsResponse> getTrialBs(@Query(value="company_id") Integer companyId, @Query(value="fiscal_year") Integer fiscalYear, @Query(value="start_month") Integer startMonth, @Query(value="end_month") Integer endMonth, @Query(value="start_date") String startDate, @Query(value="end_date") String endDate, @Query(value="account_item_display_type") String accountItemDisplayType, @Query(value="breakdown_display_type") String breakdownDisplayType, @Query(value="partner_id") Integer partnerId, @Query(value="partner_code") String partnerCode, @Query(value="item_id") Integer itemId, @Query(value="adjustment") String adjustment)
companyId - 事業所ID (required)fiscalYear - 会計年度 (optional)startMonth - 発生月で絞込:開始会計月(1-12) (optional)endMonth - 発生月で絞込:終了会計月(1-12) (optional)startDate - 発生日で絞込:開始日(yyyy-mm-dd) (optional)endDate - 発生日で絞込:終了日(yyyy-mm-dd) (optional)accountItemDisplayType - 勘定科目の表示(勘定科目: account_item, 決算書表示:group) (optional)breakdownDisplayType - 内訳の表示(取引先: partner, 品目: item, 勘定科目: account_item) ※勘定科目はaccount_item_display_typeが「group」の時のみ指定できます (optional)partnerId - 取引先IDで絞込(0を指定すると、取引先が未選択で絞り込めます) (optional)partnerCode - 取引先コードで絞込(事業所設定で取引先コードの利用を有効にしている場合のみ利用可能です) (optional)itemId - 品目IDで絞込(0を指定すると、品目が未選択で絞り込めます) (optional)adjustment - 決算整理仕訳で絞込(決算整理仕訳のみ: only, 決算整理仕訳以外: without) (optional)@GET(value="api/1/reports/trial_bs_three_years") io.reactivex.Observable<TrialBsThreeYearsResponse> getTrialBsThreeYears(@Query(value="company_id") Integer companyId, @Query(value="fiscal_year") Integer fiscalYear, @Query(value="start_month") Integer startMonth, @Query(value="end_month") Integer endMonth, @Query(value="start_date") String startDate, @Query(value="end_date") String endDate, @Query(value="account_item_display_type") String accountItemDisplayType, @Query(value="breakdown_display_type") String breakdownDisplayType, @Query(value="partner_id") Integer partnerId, @Query(value="partner_code") String partnerCode, @Query(value="item_id") Integer itemId, @Query(value="adjustment") String adjustment)
companyId - 事業所ID (required)fiscalYear - 会計年度 (optional)startMonth - 発生月で絞込:開始会計月(1-12) (optional)endMonth - 発生月で絞込:終了会計月(1-12) (optional)startDate - 発生日で絞込:開始日(yyyy-mm-dd) (optional)endDate - 発生日で絞込:終了日(yyyy-mm-dd) (optional)accountItemDisplayType - 勘定科目の表示(勘定科目: account_item, 決算書表示:group) (optional)breakdownDisplayType - 内訳の表示(取引先: partner, 品目: item, 勘定科目: account_item) ※勘定科目はaccount_item_display_typeが「group」の時のみ指定できます (optional)partnerId - 取引先IDで絞込(0を指定すると、取引先が未選択で絞り込めます) (optional)partnerCode - 取引先コードで絞込(事業所設定で取引先コードの利用を有効にしている場合のみ利用可能です) (optional)itemId - 品目IDで絞込(0を指定すると、品目が未選択で絞り込めます) (optional)adjustment - 決算整理仕訳で絞込(決算整理仕訳のみ: only, 決算整理仕訳以外: without) (optional)@GET(value="api/1/reports/trial_bs_two_years") io.reactivex.Observable<TrialBsTwoYearsResponse> getTrialBsTwoYears(@Query(value="company_id") Integer companyId, @Query(value="fiscal_year") Integer fiscalYear, @Query(value="start_month") Integer startMonth, @Query(value="end_month") Integer endMonth, @Query(value="start_date") String startDate, @Query(value="end_date") String endDate, @Query(value="account_item_display_type") String accountItemDisplayType, @Query(value="breakdown_display_type") String breakdownDisplayType, @Query(value="partner_id") Integer partnerId, @Query(value="partner_code") String partnerCode, @Query(value="item_id") Integer itemId, @Query(value="adjustment") String adjustment)
companyId - 事業所ID (required)fiscalYear - 会計年度 (optional)startMonth - 発生月で絞込:開始会計月(1-12) (optional)endMonth - 発生月で絞込:終了会計月(1-12) (optional)startDate - 発生日で絞込:開始日(yyyy-mm-dd) (optional)endDate - 発生日で絞込:終了日(yyyy-mm-dd) (optional)accountItemDisplayType - 勘定科目の表示(勘定科目: account_item, 決算書表示:group) (optional)breakdownDisplayType - 内訳の表示(取引先: partner, 品目: item, 勘定科目: account_item) ※勘定科目はaccount_item_display_typeが「group」の時のみ指定できます (optional)partnerId - 取引先IDで絞込(0を指定すると、取引先が未選択で絞り込めます) (optional)partnerCode - 取引先コードで絞込(事業所設定で取引先コードの利用を有効にしている場合のみ利用可能です) (optional)itemId - 品目IDで絞込(0を指定すると、品目が未選択で絞り込めます) (optional)adjustment - 決算整理仕訳で絞込(決算整理仕訳のみ: only, 決算整理仕訳以外: without) (optional)@GET(value="api/1/reports/trial_pl") io.reactivex.Observable<TrialPlResponse> getTrialPl(@Query(value="company_id") Integer companyId, @Query(value="fiscal_year") Integer fiscalYear, @Query(value="start_month") Integer startMonth, @Query(value="end_month") Integer endMonth, @Query(value="start_date") String startDate, @Query(value="end_date") String endDate, @Query(value="account_item_display_type") String accountItemDisplayType, @Query(value="breakdown_display_type") String breakdownDisplayType, @Query(value="partner_id") Integer partnerId, @Query(value="partner_code") String partnerCode, @Query(value="item_id") Integer itemId, @Query(value="section_id") Integer sectionId, @Query(value="adjustment") String adjustment, @Query(value="cost_allocation") String costAllocation)
companyId - 事業所ID (required)fiscalYear - 会計年度 (optional)startMonth - 発生月で絞込:開始会計月(1-12) (optional)endMonth - 発生月で絞込:終了会計月(1-12) (optional)startDate - 発生日で絞込:開始日(yyyy-mm-dd) (optional)endDate - 発生日で絞込:終了日(yyyy-mm-dd) (optional)accountItemDisplayType - 勘定科目の表示(勘定科目: account_item, 決算書表示:group) (optional)breakdownDisplayType - 内訳の表示(取引先: partner, 品目: item, 部門: section, 勘定科目: account_item) ※勘定科目はaccount_item_display_typeが「group」の時のみ指定できます (optional)partnerId - 取引先IDで絞込(0を指定すると、取引先が未選択で絞り込めます) (optional)partnerCode - 取引先コードで絞込(事業所設定で取引先コードの利用を有効にしている場合のみ利用可能です) (optional)itemId - 品目IDで絞込(0を指定すると、品目が未選択で絞り込めます) (optional)sectionId - 部門IDで絞込(0を指定すると、部門が未選択で絞り込めます) (optional)adjustment - 決算整理仕訳で絞込(決算整理仕訳のみ: only, 決算整理仕訳以外: without) (optional)costAllocation - 配賦仕訳で絞込(配賦仕訳のみ:only,配賦仕訳以外:without) (optional)@GET(value="api/1/reports/trial_pl_sections") io.reactivex.Observable<TrialPlSectionsResponse> getTrialPlSections(@Query(value="company_id") Integer companyId, @Query(value="section_ids") String sectionIds, @Query(value="fiscal_year") Integer fiscalYear, @Query(value="start_month") Integer startMonth, @Query(value="end_month") Integer endMonth, @Query(value="start_date") String startDate, @Query(value="end_date") String endDate, @Query(value="account_item_display_type") String accountItemDisplayType, @Query(value="breakdown_display_type") String breakdownDisplayType, @Query(value="partner_id") Integer partnerId, @Query(value="partner_code") String partnerCode, @Query(value="item_id") Integer itemId, @Query(value="adjustment") String adjustment, @Query(value="cost_allocation") String costAllocation)
companyId - 事業所ID (required)sectionIds - 出力する部門の指定(半角数字のidを半角カンマ区切りスペースなしで指定してください) (required)fiscalYear - 会計年度 (optional)startMonth - 発生月で絞込:開始会計月(1-12) (optional)endMonth - 発生月で絞込:終了会計月(1-12) (optional)startDate - 発生日で絞込:開始日(yyyy-mm-dd) (optional)endDate - 発生日で絞込:終了日(yyyy-mm-dd) (optional)accountItemDisplayType - 勘定科目の表示(勘定科目: account_item, 決算書表示:group) (optional)breakdownDisplayType - 内訳の表示(取引先: partner, 品目: item, 勘定科目: account_item) ※勘定科目はaccount_item_display_typeが「group」の時のみ指定できます (optional)partnerId - 取引先IDで絞込(0を指定すると、取引先が未選択で絞り込めます) (optional)partnerCode - 取引先コードで絞込(事業所設定で取引先コードの利用を有効にしている場合のみ利用可能です) (optional)itemId - 品目IDで絞込(0を指定すると、品目が未選択で絞り込めます) (optional)adjustment - 決算整理仕訳で絞込(決算整理仕訳のみ: only, 決算整理仕訳以外: without) (optional)costAllocation - 配賦仕訳で絞込(配賦仕訳のみ:only,配賦仕訳以外:without) (optional)@GET(value="api/1/reports/trial_pl_three_years") io.reactivex.Observable<TrialPlThreeYearsResponse> getTrialPlThreeYears(@Query(value="company_id") Integer companyId, @Query(value="fiscal_year") Integer fiscalYear, @Query(value="start_month") Integer startMonth, @Query(value="end_month") Integer endMonth, @Query(value="start_date") String startDate, @Query(value="end_date") String endDate, @Query(value="account_item_display_type") String accountItemDisplayType, @Query(value="breakdown_display_type") String breakdownDisplayType, @Query(value="partner_id") Integer partnerId, @Query(value="partner_code") String partnerCode, @Query(value="item_id") Integer itemId, @Query(value="section_id") Integer sectionId, @Query(value="adjustment") String adjustment, @Query(value="cost_allocation") String costAllocation)
companyId - 事業所ID (required)fiscalYear - 会計年度 (optional)startMonth - 発生月で絞込:開始会計月(1-12) (optional)endMonth - 発生月で絞込:終了会計月(1-12) (optional)startDate - 発生日で絞込:開始日(yyyy-mm-dd) (optional)endDate - 発生日で絞込:終了日(yyyy-mm-dd) (optional)accountItemDisplayType - 勘定科目の表示(勘定科目: account_item, 決算書表示:group) (optional)breakdownDisplayType - 内訳の表示(取引先: partner, 品目: item, 部門: section, 勘定科目: account_item) ※勘定科目はaccount_item_display_typeが「group」の時のみ指定できます (optional)partnerId - 取引先IDで絞込(0を指定すると、取引先が未選択で絞り込めます) (optional)partnerCode - 取引先コードで絞込(事業所設定で取引先コードの利用を有効にしている場合のみ利用可能です) (optional)itemId - 品目IDで絞込(0を指定すると、品目が未選択で絞り込めます) (optional)sectionId - 部門IDで絞込(0を指定すると、部門が未選択で絞り込めます) (optional)adjustment - 決算整理仕訳で絞込(決算整理仕訳のみ: only, 決算整理仕訳以外: without) (optional)costAllocation - 配賦仕訳で絞込(配賦仕訳のみ:only,配賦仕訳以外:without) (optional)@GET(value="api/1/reports/trial_pl_two_years") io.reactivex.Observable<TrialPlTwoYearsResponse> getTrialPlTwoYears(@Query(value="company_id") Integer companyId, @Query(value="fiscal_year") Integer fiscalYear, @Query(value="start_month") Integer startMonth, @Query(value="end_month") Integer endMonth, @Query(value="start_date") String startDate, @Query(value="end_date") String endDate, @Query(value="account_item_display_type") String accountItemDisplayType, @Query(value="breakdown_display_type") String breakdownDisplayType, @Query(value="partner_id") Integer partnerId, @Query(value="partner_code") String partnerCode, @Query(value="item_id") Integer itemId, @Query(value="section_id") Integer sectionId, @Query(value="adjustment") String adjustment, @Query(value="cost_allocation") String costAllocation)
companyId - 事業所ID (required)fiscalYear - 会計年度 (optional)startMonth - 発生月で絞込:開始会計月(1-12) (optional)endMonth - 発生月で絞込:終了会計月(1-12) (optional)startDate - 発生日で絞込:開始日(yyyy-mm-dd) (optional)endDate - 発生日で絞込:終了日(yyyy-mm-dd) (optional)accountItemDisplayType - 勘定科目の表示(勘定科目: account_item, 決算書表示:group) (optional)breakdownDisplayType - 内訳の表示(取引先: partner, 品目: item, 部門: section, 勘定科目: account_item) ※勘定科目はaccount_item_display_typeが「group」の時のみ指定できます (optional)partnerId - 取引先IDで絞込(0を指定すると、取引先が未選択で絞り込めます) (optional)partnerCode - 取引先コードで絞込(事業所設定で取引先コードの利用を有効にしている場合のみ利用可能です) (optional)itemId - 品目IDで絞込(0を指定すると、品目が未選択で絞り込めます) (optional)sectionId - 部門IDで絞込(0を指定すると、部門が未選択で絞り込めます) (optional)adjustment - 決算整理仕訳で絞込(決算整理仕訳のみ: only, 決算整理仕訳以外: without) (optional)costAllocation - 配賦仕訳で絞込(配賦仕訳のみ:only,配賦仕訳以外:without) (optional)Copyright © 2020. All rights reserved.