京都のkintone用javascript
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

102 řádky
4.6KB

  1. import { KintoneRecordField } from "@kintone/rest-api-client";
  2. import { AppRecord } from ".";
  3. const F = {
  4. 状態: "status",
  5. 自動承認ステータス: "auto_confirm_status",
  6. 利用開始希望日: "利用開始希望日",
  7. 駐車場名: "駐車場",
  8. 定期駐車料金: "定期駐車料金",
  9. 振込期日: "振込期日",
  10. 日割り分_月: "日割り分_月",
  11. 日割り分_金額: "日割り分_金額",
  12. 請求対象分_月: "請求対象分_月",
  13. 請求対象分_金額: "請求対象分_金額",
  14. 初回振り込み合計額: "初回振り込み合計額",
  15. 自動承認契約情報: "自動承認契約情報",
  16. 受付メール送信日時: "受付メール送信日時",
  17. 承認メール送信日時: "承認メール送信日時",
  18. 初回入金予定_必要分: "初回入金予定_必要分",
  19. 初回入金予定_初月分入金予定: "初回入金予定_初月分入金予定",
  20. 初回入金予定_日割り分入金予定: "初回入金予定_日割り分入金予定",
  21. 初回入金予定_保証金入金予定: "初回入金予定_保証金入金予定",
  22. 初回入金予定_初回入金充当状態: "初回入金予定_初回入金充当状態",
  23. } as const;
  24. export const 状態Dropdown = {
  25. 新規: "新規",
  26. 承認_自動承認: "承認(自動承認)",
  27. 承認_手動: "承認(手動)",
  28. 契約中: "契約中",
  29. 予約: "予約",
  30. 選考当選: "選考当選",
  31. 入金待ち: "入金待ち",
  32. 空き待ち: "空き待ち",
  33. キャンセル: "キャンセル",
  34. } as const;
  35. export type 状態Dropdown = (typeof 状態Dropdown)[keyof typeof 状態Dropdown];
  36. export const 自動承認ステータスDropdown = {
  37. NONE: "",
  38. 承認済: "承認済",
  39. } as const;
  40. export type 自動承認ステータスDropdown =
  41. (typeof 自動承認ステータスDropdown)[keyof typeof 自動承認ステータスDropdown];
  42. export const 初回入金予定Checkbox = {
  43. 初月分: "初月分",
  44. 日割り分: "日割り分",
  45. 保証金: "保証金",
  46. } as const;
  47. export type 初回入金予定Checkbox =
  48. (typeof 初回入金予定Checkbox)[keyof typeof 初回入金予定Checkbox];
  49. export const 定期申込予約フィールド名 = F;
  50. export type 定期申込予約 = AppRecord & {
  51. 備考: KintoneRecordField.MultiLineText;
  52. 受付順: KintoneRecordField.Number;
  53. 申込番号: KintoneRecordField.SingleLineText;
  54. 利用方法: KintoneRecordField.MultiLineText;
  55. 定期駐車場プラン: KintoneRecordField.SingleLineText;
  56. 台数: KintoneRecordField.SingleLineText;
  57. 防犯登録番号: KintoneRecordField.SingleLineText;
  58. 請求対象分_月: KintoneRecordField.Number;
  59. [F.初回振り込み合計額]: KintoneRecordField.Number;
  60. メールアドレス: KintoneRecordField.SingleLineText;
  61. 受付日時: KintoneRecordField.DateTime;
  62. 学生手帳: KintoneRecordField.SingleLineText;
  63. 氏名: KintoneRecordField.SingleLineText;
  64. [F.定期駐車料金]: KintoneRecordField.Number;
  65. 学校名: KintoneRecordField.SingleLineText;
  66. 住所: KintoneRecordField.SingleLineText;
  67. 電話番号: KintoneRecordField.SingleLineText;
  68. 受付日: KintoneRecordField.Date;
  69. ParkingNavi駐車場コード: KintoneRecordField.SingleLineText;
  70. フリガナ: KintoneRecordField.SingleLineText;
  71. 利用開始希望日: KintoneRecordField.Date;
  72. メモ: KintoneRecordField.MultiLineText;
  73. 車室番号: KintoneRecordField.SingleLineText;
  74. ParkingNavi駐車場: KintoneRecordField.SingleLineText;
  75. [F.駐車場名]: KintoneRecordField.SingleLineText;
  76. [F.振込期日]: KintoneRecordField.Date;
  77. 日割り分_金額: KintoneRecordField.Number;
  78. 自動承認メモ: KintoneRecordField.MultiLineText;
  79. 車両番号: KintoneRecordField.SingleLineText;
  80. [F.請求対象分_金額]: KintoneRecordField.Number;
  81. ParkingNaviプラン: KintoneRecordField.SingleLineText;
  82. [F.日割り分_月]: KintoneRecordField.Number;
  83. 支払方法: KintoneRecordField.Dropdown;
  84. [F.自動承認ステータス]: KintoneRecordField.SingleLineText;
  85. [F.状態]: KintoneRecordField.Dropdown;
  86. [F.自動承認契約情報]: KintoneRecordField.Number;
  87. [F.自動承認契約情報]: KintoneRecordField.Number;
  88. [F.受付メール送信日時]: KintoneRecordField.DateTime;
  89. [F.承認メール送信日時]: KintoneRecordField.DateTime;
  90. [F.初回入金予定_必要分]: KintoneRecordField.CheckBox;
  91. [F.初回入金予定_初月分入金予定]: KintoneRecordField.SingleLineText;
  92. [F.初回入金予定_日割り分入金予定]: KintoneRecordField.SingleLineText;
  93. [F.初回入金予定_保証金入金予定]: KintoneRecordField.SingleLineText;
  94. [F.初回入金予定_初回入金充当状態]: KintoneRecordField.SingleLineText;
  95. };