vat.js 546 B

123456789101112
  1. const { Integer, Text } = require('@keystonejs/fields');
  2. const { AutoIncrement } = require('@keystonejs/fields-auto-increment');
  3. module.exports = {
  4. fields: {
  5. id: { type: Integer, label: 'ID VAT' },
  6. value: { type: Integer, isRequired: true, label: 'Wartosc' },
  7. name: { type: Text, isRequired: true, label: 'Nazwa' },
  8. value_display: { type: Text, label: 'Wartosc wyswietlana' },
  9. ptu: { type: Text, isRequired: true, label: 'Stawka PTU' },
  10. }, label: 'Stawki VAT'//, plural: 'Stawka VAT'
  11. };