1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
use chrono::*;
use reqwest;

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// APIエラー
pub struct ApiError {
    /// e.g. "400"
    pub code: String,
    pub errors: Vec<Error>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 詳細エラー
pub struct Error {
    /// e.g. "必要なパラメーターが存在しない、もしくは空です。"
    pub message: String,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 事業所
pub struct Office {
    /// 事業所名 e.g. "サンプル事業所"
    pub name: String,
    /// 郵便番号 e.g. "123-4567"
    pub zip: String,
    /// 県 e.g. "東京都"
    pub prefecture: String,
    /// 住所(丁目まで) e.g. "港区サンプル1-2-3"
    pub address1: String,
    /// 住所(建物以降) e.g. "サンプルビル"
    pub address2: String,
    /// 電話番号 e.g. "03-1234-5678"
    pub tel: String,
    /// FAX番号 e.g. "03-5678-1234"
    pub fax: String,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 事業所の更新リクエスト用データ
pub struct UpdateOffice {
    /// 事業所名 e.g. "サンプル事業所"
    pub name: Option<String>,
    /// 郵便番号 e.g. "123-4567"
    pub zip: Option<String>,
    /// 県 e.g. "東京都"
    pub prefecture: Option<String>,
    /// 住所(丁目まで) e.g. "港区サンプル1-2-3"
    pub address1: Option<String>,
    /// 住所(建物以降) e.g. "サンプルビル"
    pub address2: Option<String>,
    /// 電話番号 e.g. "03-1234-5678"
    pub tel: Option<String>,
    /// FAX番号 e.g. "03-5678-1234"
    pub fax: Option<String>,
}


#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 取引先一覧
pub struct Partners {
    /// 結果のメタデータ
    pub meta: Meta,
    /// 取引先一覧
    pub partners: Vec<Partner>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 検索結果のメタデータ
pub struct Meta {
    /// 総項目数
    pub total_count: u32,
    /// 総ページ数
    pub total_pages: u32,
    /// 現ページ
    pub current_page: String,
    /// 1ページあたりの項目数
    pub per_page: String,
}



#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)]
#[derive(Serialize, Deserialize)]
/// 取引先
pub struct Partner {
    /// 取引先ID
    pub id: String,
    /// 顧客コード
    pub code: Option<String>,
    /// 名前
    pub name: String,
    /// 名前(カナ)
    pub name_kana: Option<String>,
    /// 敬称
    pub name_suffix: String,
    /// メモ
    pub memo: Option<String>,
    /// 部門
    pub departments: Vec<Department>,
    /// 作成日時
    pub created_at: DateTime<FixedOffset>,
    /// 更新日時
    pub updated_at: DateTime<FixedOffset>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 部門
pub struct Department {
    /// 部門ID
    pub id: String,
    /// 郵便番号
    pub zip: Option<String>,
    /// 電話番号
    pub tel: Option<String>,
    /// 都道府県
    pub prefecture: String,
    /// 住所1
    pub address1: Option<String>,
    /// 住所2
    pub address2: Option<String>,
    /// 担当者氏名
    pub person_name: Option<String>,
    /// 担当者役職
    pub person_title: Option<String>,
    /// 部門名
    pub name: Option<String>,
    /// メールアドレス
    pub email: Option<String>,
    /// ccメールアドレス
    pub cc_emails: Option<String>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 取引先作成用リクエストデータ
pub struct NewPartner {
    /// 顧客コード
    pub code: Option<String>,
    /// 名前
    pub name: String,
    /// 名前(カナ)
    pub name_kana: Option<String>,
    /// 敬称
    pub name_suffix: Option<String>,
    /// メモ
    pub memo: Option<String>,
    /// 郵便番号
    pub zip: Option<String>,
    /// 電話番号
    pub tel: Option<String>,
    /// 都道府県
    pub prefecture: Option<String>,
    /// 住所1
    pub address1: Option<String>,
    /// 住所2
    pub address2: Option<String>,
    /// 担当者氏名
    pub person_name: Option<String>,
    /// 担当者役職
    pub person_title: Option<String>,
    /// 部門名
    pub department_name: Option<String>,
    /// メールアドレス
    pub email: Option<String>,
    /// ccメールアドレス
    pub cc_emails: Option<String>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 取引先更新用リクエストデータ
pub struct UpdatePartner {
    /// 顧客コード
    pub code: Option<String>,
    /// 名前
    pub name: Option<String>,
    /// 名前 (カナ)
    pub name_kana: Option<String>,
    /// 敬称
    pub name_suffix: Option<String>,
    /// メモ
    pub memo: Option<String>,
    /// 部門
    pub departments: Vec<UpdateDepartmentInfo>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 取引先更新用リクエストデータに付随する部門更新用リクエストデータ
pub struct UpdateDepartmentInfo {
    /// 部門ID。既存の部門を更新する際には必須です。
    pub id: Option<String>,
    /// 郵便番号
    pub zip: Option<String>,
    /// 電話番号
    pub tel: Option<String>,
    /// 都道府県
    pub prefecture: Option<String>,
    /// 住所1
    pub address1: Option<String>,
    /// 住所2
    pub address2: Option<String>,
    /// 担当者氏名
    pub person_name: Option<String>,
    /// 担当者役職
    pub person_title: Option<String>,
    /// 部門名
    pub name: Option<String>,
    /// メールアドレス
    pub email: Option<String>,
    /// ccメールアドレス
    pub cc_emails: Option<String>,
}


#[derive(Debug, Clone, PartialOrd, PartialEq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 請求書一覧
pub struct Billings {
    /// 結果のメタデータ
    pub meta: Meta,
    /// 請求書一覧
    pub billings: Vec<Billing>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)]
#[derive(Serialize, Deserialize)]
pub struct Billing {
    /// 請求書ID e.g. "ABCDEFGHIJKLMNOPQRST123"
    pub id: String,
    /// 取引先ID e.g. "ABCDEFGHIJKLMNOPQRST789"
    pub partner_id: String,
    /// 部門ID e.g. "ABCDEFGHIJKLMNOPQRST012",
    pub department_id: String,
    /// 取引先名 e.g. "サンプル取引先"
    pub partner_name: String,
    /// 取引先敬称 e.g. "様"
    pub partner_name_suffix: String,
    /// 取引先詳細 e.g. "hogehoge"
    pub partner_detail: String,
    /// 担当者ID e.g. "ABCDEFGHIJKLMNOPQRST345"
    pub member_id: String,
    /// 担当者名 e.g. "member_name"
    pub member_name: Option<String>,
    /// 事業所名 e.g. "サンプル事業所"
    pub office_name: String,
    /// 事業所詳細 e.g. ""
    pub office_detail: String,
    /// 件名 e.g. "件名サンプル"
    pub title: Option<String>,
    /// 消費税 e.g. 80
    pub excise_price: String,
    /// 小計額 e.g. 1000
    pub subtotal: String,
    /// メモ e.g. ""
    pub memo: Option<String>,
    /// 支払条件 e.g. ""
    pub payment_condition: Option<String>,
    /// 合計額 e.g. 1080
    pub total_price: String,
    /// 請求日
    pub billing_date: NaiveDate,
    /// 支払い期日
    pub due_date: NaiveDate,
    /// 売上日
    pub sales_date: NaiveDate,
    /// 作成日時 e.g. "2015/10/31T00:00:00.000+09:00"
    pub created_at: DateTime<FixedOffset>,
    /// 更新日時 e.g. "2015/10/31T00:00:00.000+09:00"
    pub updated_at: DateTime<FixedOffset>,
    /// 請求番号 e.g. "1"
    pub billing_number: String,
    /// 備考 e.g. ""
    pub note: Option<String>,
    /// 文書名 e.g. ""
    pub document_name: String,
    /// タグ
    pub tags: Vec<String>,
    /// 状態
    pub status: Status,
    /// 品目
    pub items: Vec<BillingItem>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 請求書各種状況
pub struct Status {
    /// 郵送状況 e.g. "未郵送"
    pub posting: String,
    /// メール状況 e.g. "未送信"
    pub email: String,
    /// ダウンロード状況 e.g. ""
    pub download: String,
    /// 支払い 状況 e.g. "未設定"
    pub payment: String,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)]
#[derive(Serialize, Deserialize)]
/// 品目
pub struct BillingItem {
    /// 品目ID e.g. "ABCDEFGHIJKLMNOPQRST012"
    pub id: String,
    /// コード e.g. "ITEM-001"
    pub code: Option<String>,
    /// 品名 e.g. "商品A"
    pub name: Option<String>,
    /// 詳細 e.g. ""
    pub detail: Option<String>,
    /// 数量 e.g. 1
    pub quantity: Option<u32>,
    /// 単価 e.g. 1000
    pub unit_price: Option<u32>,
    /// 単位 e.g. "個"
    pub unit: Option<String>,
    /// 金額 e.g. 1000
    pub price: Option<u32>,
    /// 表示順 e.g. 0
    pub display_order: u32,
    /// 課税対象 e.g. true
    pub excise: bool,
    /// 作成日時 "2015/10/31T00:00:00.000+09:00"
    pub created_at: DateTime<FixedOffset>,
    /// 更新日時 "2015/10/31T00:00:00.000+09:00"
    pub updated_at: DateTime<FixedOffset>,
}

#[derive(Debug)]
pub struct BillingPdf(pub(crate) reqwest::Response);
impl ::std::io::Read for BillingPdf {
    fn read(&mut self, buf: &mut [u8]) -> ::std::io::Result<usize> {
        self.0.read(buf)
    }
}


#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)]
#[derive(Serialize, Deserialize)]
/// 請求書検索の結果
pub struct BillingQueryResponse {
    /// メタデータ
    pub meta: BillingQueryMeta,
    /// 検索結果請求書
    pub billings: Vec<Billing>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)]
#[derive(Serialize, Deserialize)]
/// 請求書検索結果のメタデータ
pub struct BillingQueryMeta {
    /// 総項目数
    pub total_count: u32,
    /// 総ページ数
    pub total_pages: u32,
    /// 現ページ
    pub current_page: String,
    /// 1ページあたりの項目数
    pub per_page: String,
    /// 条件
    pub condition: Condition,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)]
#[derive(Serialize, Deserialize)]
/// 検索条件
pub struct Condition {
    /// 検索文字列 e.g. "hoge"
    pub query: String,
    /// 期間絞込対象 e.g. "created_at"
    pub range_key: String,
    /// 期間開始日
    pub from: NaiveDate,
    /// 期間終了日
    pub to: NaiveDate,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 請求書作成用リクエストデータ
pub struct NewBilling {
    /// 部門ID
    pub department_id: String,
    /// 件名
    pub title: Option<String>,
    /// 請求書番号
    pub billing_number: Option<String>,
    /// 振込先
    pub payment_condition: Option<String>,
    /// 備考
    pub note: Option<String>,
    /// 請求日
    pub billing_date: Option<NaiveDate>,
    /// お支払期限
    pub due_date: Option<NaiveDate>,
    /// 売上計上日
    pub sales_date: Option<NaiveDate>,
    /// メモ
    pub memo: Option<String>,
    /// 帳票名
    pub document_name: Option<String>,
    /// タグ。カンマ区切り文字列で記載
    pub tags: Option<String>,
    /// 品目
    pub items: Vec<NewBillingItem>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 請求書作成用リクエストデータに付随する品目データ
pub struct NewBillingItem {
    /// 品目ID。IDがあれば既存の品目の更新を、IDがなければ追加を意味する
    pub id: Option<String>,
    /// 名前
    pub name: Option<String>,
    /// コード
    pub code: Option<String>,
    /// 詳細
    pub detail: Option<String>,
    /// 数量
    pub quantity: Option<String>,
    /// 単価
    pub unit_price: Option<String>,
    /// 単位
    pub unit: Option<String>,
    /// 税対象
    pub excise: bool,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 請求書更新用リクエストデータ
pub struct UpdateBilling {
    /// 部門ID
    pub department_id: String,
    /// 件名
    pub title: Option<String>,
    /// 請求書番号
    pub billing_number: Option<String>,
    /// 振込先
    pub payment_condition: Option<String>,
    /// 備考
    pub note: Option<String>,
    /// 請求日
    pub billing_date: Option<NaiveDate>,
    /// お支払期限
    pub due_date: Option<NaiveDate>,
    /// 売上計上日
    pub sales_date: Option<NaiveDate>,
    /// メモ
    pub memo: Option<String>,
    /// 帳票名
    pub document_name: Option<String>,
    /// タグ。カンマ区切り文字列で記載
    pub tags: Option<String>,
    /// 品目
    pub items: Vec<UpdateBillingItem>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 請求書更新用リクエストデータに付随する品目更新用データ
pub struct UpdateBillingItem {
    /// 品目Id
    pub id: Option<String>,
    /// 名前
    pub name: Option<String>,
    /// コード
    pub code: Option<String>,
    /// 詳細
    pub detail: Option<String>,
    /// 数量
    pub quantity: Option<String>,
    /// 単価
    pub unit_price: Option<String>,
    /// 単位
    pub unit: Option<u32>,
    /// 税対象
    pub excise: bool,
    /// 削除するならtrue
    pub _destroy: bool,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 品目一覧
pub struct Items {
    /// メタデータ
    pub meta: ItemsMeta,
    /// 品目一覧
    pub items: Vec<Item>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 商品検索結果のメタデータ
pub struct ItemsMeta {
    /// 総項目数
    pub total_count: u32,
    /// 総ページ数
    pub total_pages: u32,
    /// 現ページ
    pub current_page: u32,
    /// 1ページあたりの項目数
    pub per_page: u32,
}


#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)]
#[derive(Serialize, Deserialize)]
pub struct Item {
    /// 品目ID e.g. "ABCDEFGHIJKLMNOPQRST012"
    pub id: String,
    /// コード e.g. "ITEM-001"
    pub code: Option<String>,
    /// 名前 e.g. "商品A"
    pub name: String,
    /// 詳細 e.g. ""
    pub detail: Option<String>,
    /// 数量 e.g. 1
    pub quantity: Option<u32>,
    /// 単価 e.g. 1000
    pub unit_price: Option<u32>,
    /// 単位 e.g. "個"
    pub unit: Option<String>,
    /// 金額 e.g. 1000
    pub price: String,
    /// 課税対象 e.g. true
    pub excise: bool,
    /// 作成日時 e.g. "2015/10/31T00:00:00.000+09:00"
    pub created_at: DateTime<FixedOffset>,
    /// 更新日時 e.g. "2015/10/31T00:00:00.000+09:00"
    pub updated_at: DateTime<FixedOffset>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 品目作成用のリクエストデータ
pub struct NewItem {
    /// 名前
    pub name: String,
    /// 品目コード
    pub code: Option<String>,
    /// 詳細
    pub detail: Option<String>,
    /// 単価
    pub unit_price: Option<u32>,
    /// 単位
    pub unit: Option<String>,
    /// 数量
    pub quantity: Option<u32>,
    /// 消費税を計算するか
    pub excise: Option<bool>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 品目更新用のリクエストデータ
pub struct UpdateItem {
    /// 名前
    pub name: Option<String>,
    /// 品目コード
    pub code: Option<String>,
    /// 詳細
    pub detail: Option<String>,
    /// 単価
    pub unit_price: Option<u32>,
    /// 単位
    pub unit: Option<String>,
    /// 数量
    pub quantity: Option<u32>,
    /// 消費税を計算するか
    pub excise: Option<bool>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 送付履歴一覧
pub struct SentHistories {
    /// メタデータ
    pub meta: Meta,
    /// 送付履歴
    pub sent_history_list: Vec<SentHistory>,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Default)]
#[derive(Serialize, Deserialize)]
/// 送付データ
pub struct SentHistory {
    /// e.g. "ABCDEFGHIJKLMNOP"
    pub operator_id: String,
    /// e.g. "メール"
    #[serde(rename = "type")]
    pub type_: String,
    /// e.g. "請求書"
    pub document_type: String,
    /// e.g. "ABCDEFGHIJKLMNOP"
    pub document_id: String,
    /// e.g. ""
    pub from: String,
    /// e.g. "sample@moneyforward.co.jp"
    pub to: String,
    /// e.g. ""
    pub cc: String,
    /// e.g. "2015-05-15T11:40:44.000+09:00"
    pub sent_at: String,
}