メインコンテンツへスキップ

請求書・見積書

limでインボイス制度に対応した適格請求書の作成から入金管理まで行えます。

請求書の作成

lim invoices create \
  --to "株式会社クライアント" \
  --item "コンサルティング" --amount 500000 --tax-rate 10 \
  --due-date 2026-04-30
✅ Invoice created: inv_01J7...
   Amount: ¥550,000 (tax incl.)
   Due: 2026-04-30
   Status: draft

適格請求書の要件

limは適格請求書(インボイス)の法定記載事項を自動で補完します:
  • 適格請求書発行事業者の登録番号
  • 取引年月日
  • 取引内容
  • 税率ごとの対価の額と消費税額
  • 書類の交付を受ける事業者の名称
自社の登録番号は lim companies update --invoice-number T1234567890123 で設定してください。請求書に自動で記載されます。

請求書の送付

送付することで請求書が確定し、売掛金の仕訳が自動生成されます:
# メールで送付
lim invoices send inv_01J7... --via email

# PDF出力
lim invoices export inv_01J7... --format pdf --output invoice.pdf

請求書の無効化

lim invoices void inv_01J7... --reason "重複請求"

入金管理

# 未入金の請求書一覧
lim invoices list --status unpaid

# 入金を記録
lim invoices pay inv_01J7... --amount 550000 --date 2026-04-25

# 入金時に自動仕訳
# Dr. 普通預金 550,000 / Cr. 売掛金 550,000

見積書の作成

lim estimates create \
  --to "株式会社見込み客" \
  --item "システム開発" --amount 2000000 --tax-rate 10 \
  --valid-until 2026-04-30

見積書から請求書への変換

lim invoices convert est_01J7... --due-date 2026-05-31

定期請求

毎月同じ内容の請求書を自動作成できます:
lim invoices create-recurring \
  --to "株式会社月額クライアント" \
  --item "保守サービス" --amount 100000 --tax-rate 10 \
  --interval monthly --start 2026-04-01

請求書一覧

lim invoices list
ID            To                 Amount      Due          Status
inv_01J7...   株式会社クライアント  ¥550,000   2026-04-30   sent
inv_01J8...   株式会社月額         ¥110,000   2026-05-31   paid

次のステップ