Sha256: 6b8b273e9010b837aacf4e13890a21814ccfe119ca20527d266e896f704e264d

Contents?: true

Size: 1.56 KB

Versions: 34

Compression:

Stored size: 1.56 KB

Contents

Ext.create('Ext.data.Store', {
  storeId: 'configurationmanagement-modelsstore',
  fields: ['description', 'id'],
  proxy: {
    type: 'ajax',
    url : '/erp_app/desktop/configuration_management/configurable_models',
    reader: {
      type: 'json',
      root: 'models'
    }
  }
});

Ext.create('Ext.data.Store', {
  storeId: 'configurationmanagement-templatesstore',
  fields: ['description', 'id'],
  proxy: {
    type: 'ajax',
    url : '/erp_app/desktop/configuration_management/configuration_templates_store',
    reader: {
      type: 'json',
      root: 'templates'
    }
  }
});

Ext.create('Ext.data.Store', {
  pageSize:10,
  storeId: 'configurationmanagement-optionsstore',
  fields: ['id', 'description', 'value', 'internal_identifier', 'comment'],
  proxy: {
    type: 'ajax',
    url : '/erp_app/desktop/configuration_management/options/index.json',
    reader: {
      type: 'json',
      root: 'options',
      totalProperty:'totalCount'
    }
  }
});

Ext.create('Ext.data.Store', {
  pageSize:10,
  storeId: 'configurationmanagement-typesstore',
  fields: ['id', 'description', 'internal_identifier'],
  proxy: {
    type: 'ajax',
    url : '/erp_app/desktop/configuration_management/types/types_store',
    reader: {
      type: 'json',
      root: 'types'
    }
  }
});

Ext.create('Ext.data.Store', {
  storeId: 'configurationmanagement-categoriesstore',
  fields: ['description', 'category_id'],
  proxy: {
    type: 'ajax',
    url : '/erp_app/desktop/configuration_management/types/categories',
    reader: {
      type: 'json',
      root: 'categories'
    }
  }
});

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
erp_app-4.2.0 app/assets/javascripts/erp_app/desktop/applications/configuration_management/stores.js
erp_app-4.0.0 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.16 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.15 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.14 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.13 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.12 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.11 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.10 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.9 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.8 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.7 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.6 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.5 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.4 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.3 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.2 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.0.16 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.0.15 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js
erp_app-3.1.1 public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js