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.
58 lines
2.8 KiB
JavaScript
58 lines
2.8 KiB
JavaScript
Ext.define('MsCodeCtnEdi', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'CTN', type: 'string' },
|
|
{ name: 'EDICODE', type: 'string' },
|
|
{ name: 'EDINAME', type: 'string' },
|
|
{ name: 'EDINAMEREF', type: 'string' },
|
|
{ name: 'REMARK', type: 'string' },
|
|
{ name: 'PORTID', type: 'string' }
|
|
]
|
|
});
|
|
|
|
Ext.define('MsCodeAFREdi', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{name: 'GID', type: 'string' }, //编号
|
|
{name: 'LINKGID', type: 'string' }, //关联客户GID
|
|
{name: 'SHIPPERNAME', type: 'string' }, //发货人名称
|
|
{name: 'SHIPPERADDR1', type: 'string' }, //发货人地址1
|
|
{name: 'SHIPPERADDR2', type: 'string' }, //发货人地址2
|
|
{name: 'SHIPPERADDR3', type: 'string' }, //发货人地址3
|
|
{name: 'SHIPPERCITY', type: 'string' }, //SHIPPERCITY
|
|
{name: 'SHIPPERPROVINCE', type: 'string' }, //发货人省
|
|
{name: 'SHIPPERPOSTCODE', type: 'string' }, //发货人邮编
|
|
{name: 'SHIPPERCOUNTRY', type: 'string' }, //发货人国家
|
|
{name: 'SHIPPERATTN', type: 'string' }, //发货人联系人
|
|
{name: 'SHIPPERTEL', type: 'string' }, //发货人联系方式
|
|
{name: 'CONSIGNEENAME', type: 'string' }, //收货人名称
|
|
{name: 'CONSIGNEEADDR1', type: 'string' }, //收货人地址1
|
|
{name: 'CONSIGNEEADDR2', type: 'string' }, //收货人地址2
|
|
{name: 'CONSIGNEEADDR3', type: 'string' }, //收货人地址3
|
|
{name: 'CONSIGNEECITY', type: 'string' }, //收货人城市
|
|
{name: 'CONSIGNEEPROVINCE', type: 'string' }, //收货人省
|
|
{name: 'CONSIGNEEPOSTCODE', type: 'string' }, //收货人邮编
|
|
{name: 'CONSIGNEECOUNTRY', type: 'string' }, //收货人国家
|
|
{name: 'CONSIGNEEATTN', type: 'string' }, //收货人联系人
|
|
{name: 'CONSIGNEETEL', type: 'string' }, //收货人联系方式
|
|
{name: 'NOTIFYPARTYNAME', type: 'string' }, //通知人名称
|
|
{name: 'NOTIFYPARTYADDR1', type: 'string' }, //通知人地址1
|
|
{name: 'NOTIFYPARTYADDR2', type: 'string' }, //通知人地址2
|
|
{name: 'NOTIFYPARTYADDR3', type: 'string' }, //通知人地址3
|
|
{name: 'NOTIFYPARTYCITY', type: 'string' }, //通知人城市
|
|
{name: 'NOTIFYPARTYPROVINCE', type: 'string' }, //通知人省
|
|
{name: 'NOTIFYPARTYPOSTCODE', type: 'string' }, //通知人邮编
|
|
{name: 'NOTIFYPARTYCOUNTRY', type: 'string' }, //通知人国家
|
|
{name: 'NOTIFYPARTYATTN', type: 'string' }, //通知人联系人
|
|
{name: 'NOTIFYPARTYTEL', type: 'string' }, //通知人联系方式
|
|
{name: 'CORPID', type: 'string' }, //所属公司
|
|
{name: 'MODIFIEDUSER', type: 'string' }, //更改操作人gid
|
|
//{name: 'MODIFIEDTIME', type: 'DateTime' }, //更改操作时间
|
|
{name: 'CustName', type: 'string' } //更改操作人gid
|
|
]
|
|
});
|
|
|