@shisyamo4131/air-guard-v2-schemas 1.3.1-dev.17 → 1.3.1-dev.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/Billing.js +2 -2
- package/src/parts/fieldDefinitions.js +12 -0
package/package.json
CHANGED
package/src/Billing.js
CHANGED
|
@@ -38,8 +38,8 @@ const classProps = {
|
|
|
38
38
|
customerId: defField("customerId", { required: true }),
|
|
39
39
|
siteId: defField("siteId", { required: true }),
|
|
40
40
|
billingMonth: defField("oneLine", { required: true }),
|
|
41
|
-
billingDateAt: defField("
|
|
42
|
-
paymentDueDateAt: defField("
|
|
41
|
+
billingDateAt: defField("dateAt"),
|
|
42
|
+
paymentDueDateAt: defField("dateAt"),
|
|
43
43
|
|
|
44
44
|
// 入金管理用配列(現時点では未使用 将来の拡張用)
|
|
45
45
|
paymentRecords: defField("array", { default: [] }), // Not implemented yet
|
|
@@ -210,6 +210,18 @@ export const fieldDefinitions = {
|
|
|
210
210
|
label: "市区町村",
|
|
211
211
|
length: 10,
|
|
212
212
|
},
|
|
213
|
+
customerId: {
|
|
214
|
+
...generalDefinitions.oneLine,
|
|
215
|
+
label: "取引先",
|
|
216
|
+
component: {
|
|
217
|
+
name: "air-autocomplete-api",
|
|
218
|
+
attrs: {
|
|
219
|
+
itemValue: "docId",
|
|
220
|
+
itemTitle: "name",
|
|
221
|
+
noFilter: true,
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
},
|
|
213
225
|
displayName: {
|
|
214
226
|
...generalDefinitions.oneLine,
|
|
215
227
|
label: "表示名",
|