| 12345678910111213 |
- const { Checkbox, DateTime, Text, Integer, Uuid, Relationship } = require('@keystonejs/fields');
- module.exports = {
- fields: {
- id: { type: Uuid, isRequired: true, label: 'stocktaking' },
- accepted: { type: Checkbox, isRequired: true, label: 'Zatwierdzono' },
- date_o: { type: DateTime, label: 'date_o' },
- name: { type: Text, label: 'Nazwa' },
- posnumber: { type: Integer, label: 'posnumber' },
- operators_id: { type: Relationship, ref: 'operators', many: false, isRequired: true, label: 'Uzytkownik' },
- shops_id: { type: Relationship, ref: 'shops', many: false, isRequired: true, label: 'Magazyn' },
- }, label: 'Stocktaking'//, plural: 'Stocktakings'
- };
|