|
- import { KintoneRecordField } from "@kintone/rest-api-client";
- import { AppRecord } from ".";
-
- const F = {
- 状態: "status",
- 自動承認ステータス: "auto_confirm_status",
- 利用開始希望日: "利用開始希望日",
- 駐車場名: "駐車場",
- 定期駐車料金: "定期駐車料金",
- 振込期日: "振込期日",
- 日割り分_月: "日割り分_月",
- 日割り分_金額: "日割り分_金額",
- 請求対象分_月: "請求対象分_月",
- 請求対象分_金額: "請求対象分_金額",
- 初回振り込み合計額: "初回振り込み合計額",
- 自動承認契約情報: "自動承認契約情報",
- 受付メール送信日時: "受付メール送信日時",
- 承認メール送信日時: "承認メール送信日時",
- 初回入金予定_必要分: "初回入金予定_必要分",
- 初回入金予定_初月分入金予定: "初回入金予定_初月分入金予定",
- 初回入金予定_日割り分入金予定: "初回入金予定_日割り分入金予定",
- 初回入金予定_保証金入金予定: "初回入金予定_保証金入金予定",
- 初回入金予定_初回入金充当状態: "初回入金予定_初回入金充当状態",
- } as const;
-
- export const 状態Dropdown = {
- 新規: "新規",
- 承認_自動承認: "承認(自動承認)",
- 承認_手動: "承認(手動)",
- 契約中: "契約中",
- 予約: "予約",
- 選考当選: "選考当選",
- 入金待ち: "入金待ち",
- 空き待ち: "空き待ち",
- キャンセル: "キャンセル",
- } as const;
- export type 状態Dropdown = (typeof 状態Dropdown)[keyof typeof 状態Dropdown];
-
- export const 自動承認ステータスDropdown = {
- NONE: "",
- 承認済: "承認済",
- } as const;
- export type 自動承認ステータスDropdown =
- (typeof 自動承認ステータスDropdown)[keyof typeof 自動承認ステータスDropdown];
-
- export const 初回入金予定Checkbox = {
- 初月分: "初月分",
- 日割り分: "日割り分",
- 保証金: "保証金",
- } as const;
- export type 初回入金予定Checkbox =
- (typeof 初回入金予定Checkbox)[keyof typeof 初回入金予定Checkbox];
-
- export const 定期申込予約フィールド名 = F;
-
- export type 定期申込予約 = AppRecord & {
- 備考: KintoneRecordField.MultiLineText;
- 受付順: KintoneRecordField.Number;
- 申込番号: KintoneRecordField.SingleLineText;
- 利用方法: KintoneRecordField.MultiLineText;
- 定期駐車場プラン: KintoneRecordField.SingleLineText;
- 台数: KintoneRecordField.SingleLineText;
- 防犯登録番号: KintoneRecordField.SingleLineText;
- 請求対象分_月: KintoneRecordField.Number;
- [F.初回振り込み合計額]: KintoneRecordField.Number;
- メールアドレス: KintoneRecordField.SingleLineText;
- 受付日時: KintoneRecordField.DateTime;
- 学生手帳: KintoneRecordField.SingleLineText;
- 氏名: KintoneRecordField.SingleLineText;
- [F.定期駐車料金]: KintoneRecordField.Number;
- 学校名: KintoneRecordField.SingleLineText;
- 住所: KintoneRecordField.SingleLineText;
- 電話番号: KintoneRecordField.SingleLineText;
- 受付日: KintoneRecordField.Date;
- ParkingNavi駐車場コード: KintoneRecordField.SingleLineText;
- フリガナ: KintoneRecordField.SingleLineText;
- 利用開始希望日: KintoneRecordField.Date;
- メモ: KintoneRecordField.MultiLineText;
- 車室番号: KintoneRecordField.SingleLineText;
- ParkingNavi駐車場: KintoneRecordField.SingleLineText;
- [F.駐車場名]: KintoneRecordField.SingleLineText;
- [F.振込期日]: KintoneRecordField.Date;
- 日割り分_金額: KintoneRecordField.Number;
- 自動承認メモ: KintoneRecordField.MultiLineText;
- 車両番号: KintoneRecordField.SingleLineText;
- [F.請求対象分_金額]: KintoneRecordField.Number;
- ParkingNaviプラン: KintoneRecordField.SingleLineText;
- [F.日割り分_月]: KintoneRecordField.Number;
- 支払方法: KintoneRecordField.Dropdown;
- [F.自動承認ステータス]: KintoneRecordField.SingleLineText;
- [F.状態]: KintoneRecordField.Dropdown;
- [F.自動承認契約情報]: KintoneRecordField.Number;
- [F.自動承認契約情報]: KintoneRecordField.Number;
- [F.受付メール送信日時]: KintoneRecordField.DateTime;
- [F.承認メール送信日時]: KintoneRecordField.DateTime;
- [F.初回入金予定_必要分]: KintoneRecordField.CheckBox;
- [F.初回入金予定_初月分入金予定]: KintoneRecordField.SingleLineText;
- [F.初回入金予定_日割り分入金予定]: KintoneRecordField.SingleLineText;
- [F.初回入金予定_保証金入金予定]: KintoneRecordField.SingleLineText;
- [F.初回入金予定_初回入金充当状態]: KintoneRecordField.SingleLineText;
- };
|