|
|
|
@@ -30,6 +30,7 @@ use Illuminate\Support\Carbon; |
|
|
|
* @property ?int firstMonthPaymentPlanRecordNo |
|
|
|
* @property ?int partitialPaymentPlanRecordNo |
|
|
|
* @property ?int depositPaymentPlanRecordNo |
|
|
|
* @property ?string[] firstPaymentDone |
|
|
|
* @property ?int seasonTicketContractRecordNo |
|
|
|
*/ |
|
|
|
class SeasonTicketContractEntry extends KintoneModel |
|
|
|
@@ -60,6 +61,7 @@ class SeasonTicketContractEntry extends KintoneModel |
|
|
|
const FIELD_FIRST_MONTH_PAYMENT_PLAN_RECORD_NO = "初回入金予定_初月分入金予定"; |
|
|
|
const FIELD_PARTITIAL_PAYMENT_PLAN_RECORD_NO = "初回入金予定_日割り分入金予定"; |
|
|
|
const FIELD_DEPOSIT_PAYMENT_PLAN_RECORD_NO = "初回入金予定_保証金入金予定"; |
|
|
|
const FIELD_FIRST_PAYMENT_DONE = "初回入金予定_初回入金充当状態"; |
|
|
|
const FIELD_SEASON_TICKET_CONTRACT_RECORD_NO = "自動承認契約情報"; |
|
|
|
|
|
|
|
protected const FIELDS = [ |
|
|
|
@@ -87,6 +89,7 @@ class SeasonTicketContractEntry extends KintoneModel |
|
|
|
self::FIELD_FIRST_MONTH_PAYMENT_PLAN_RECORD_NO => FieldType::NUMBER, |
|
|
|
self::FIELD_PARTITIAL_PAYMENT_PLAN_RECORD_NO => FieldType::NUMBER, |
|
|
|
self::FIELD_DEPOSIT_PAYMENT_PLAN_RECORD_NO => FieldType::NUMBER, |
|
|
|
self::FIELD_FIRST_PAYMENT_DONE => FieldType::CHECK_BOX, |
|
|
|
self::FIELD_SEASON_TICKET_CONTRACT_RECORD_NO => FieldType::NUMBER, |
|
|
|
]; |
|
|
|
|
|
|
|
|