You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/MvcShipping/Viewsjs/MsCodeGoodInv/MsCodeGoodInvModel.js

25 lines
1.0 KiB
JavaScript

Ext.define('MsCodeGoodInv', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'GOODCODE', type: 'string' },
{ name: 'GOODNAME', type: 'string' },
{ name: 'GOODCODENAME', type: 'string' },
{ name: 'DESCRIP', type: 'string' },
{ name: 'TAXRATE', type: 'string' },
{ name: 'TAXNO', type: 'string' },
{ name: 'TAXCLASS', type: 'string' },
{ name: 'TAXCLASSNAME', type: 'string' },
{ name: 'ISTAXPRICE', type: 'string' },
{ name: 'ISUSEPREF', type: 'string' },
{ name: 'ISDEF', type: 'string' },
{ name: 'SPEC', type: 'string' },
{ name: 'UNIT', type: 'string' },
{ name: 'ZTAXTYPE', type: 'string' },
{ name: 'DEFREMARK', type: 'string' },
{ name: 'DEFCURR', type: 'string' }
]
});