> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uselim.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 請求書・見積書

> 適格請求書（インボイス）の作成、送付、入金管理。

# 請求書・見積書

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

## 請求書の作成

```bash theme={null}
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は適格請求書（インボイス）の法定記載事項を自動で補完します:

* 適格請求書発行事業者の登録番号
* 取引年月日
* 取引内容
* 税率ごとの対価の額と消費税額
* 書類の交付を受ける事業者の名称

<Tip>
  自社の登録番号は `lim companies update --tax-registration-number T1234567890123`
  で設定してください。請求書に自動で記載されます。
</Tip>

## 請求書の送付

送付することで請求書が確定し、売掛金の仕訳が自動生成されます:

```bash theme={null}
# メールで送付
lim invoices send inv_01J7... --via email

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

## 請求書の無効化

```bash theme={null}
lim invoices void inv_01J7... --reason "重複請求"
```

## 入金管理

```bash theme={null}
# 未入金の請求書一覧
lim invoices list --status unpaid

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

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

## 見積書の作成

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

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

```bash theme={null}
lim invoices convert est_01J7... --due-date 2026-05-31
```

## 定期請求

毎月同じ内容の請求書を自動作成できます:

```bash theme={null}
lim invoices create-recurring \
  --to "株式会社月額クライアント" \
  --item "保守サービス" --amount 100000 --tax-rate 10 \
  --interval monthly --start 2026-04-01
```

## 請求書一覧

```bash theme={null}
lim invoices list
```

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

## 次のステップ

<CardGroup cols={2}>
  <Card title="消費税・税務" icon="file-invoice" href="/ja/guides/tax-filing">
    請求書の消費税と申告。
  </Card>

  <Card title="銀行照合" icon="building-columns" href="/ja/guides/bank-reconciliation">
    入金と請求書の自動照合。
  </Card>
</CardGroup>
