You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
880 B
64 lines
880 B
8 months ago
|
export interface detailType {
|
||
|
/**
|
||
|
* 预约单ID
|
||
|
* */
|
||
|
reservationId : string | number;
|
||
|
/**
|
||
|
* 备货客户列表 定制品
|
||
|
* */
|
||
|
orderList : any;
|
||
|
/**
|
||
|
* 备货客户列表 库存品
|
||
|
* */
|
||
|
stockList : any;
|
||
|
/**
|
||
|
* 订单类型
|
||
|
* */
|
||
|
orderStatus : number;
|
||
|
/**
|
||
|
* 备货客户列表 零担
|
||
|
* */
|
||
|
zeroOrderList : any;
|
||
|
/**
|
||
|
* 用户信息
|
||
|
* */
|
||
|
user : {
|
||
|
/**
|
||
|
* 客户名字
|
||
|
* */
|
||
|
consignee : string;
|
||
|
/**
|
||
|
* 备货区
|
||
|
* */
|
||
|
goodsAreaName : string;
|
||
|
/**
|
||
|
* 计划件数
|
||
|
* */
|
||
|
planNum : string;
|
||
|
/**
|
||
|
* 扫码件数
|
||
|
* */
|
||
|
scanNum : string;
|
||
|
}
|
||
|
/**
|
||
|
* 备货区ID
|
||
|
* */
|
||
|
stockupId : string;
|
||
|
/**
|
||
|
* 上个列表的数据
|
||
|
* */
|
||
|
items : any,
|
||
|
/**
|
||
|
* 是否扫码
|
||
|
*/
|
||
|
isscan : Boolean,
|
||
|
/**
|
||
|
* 扫码出的值
|
||
|
*/
|
||
|
scancode : string,
|
||
|
trayId : string,
|
||
|
/**
|
||
|
* 是否显示零担订单的详情
|
||
|
*/
|
||
|
zeroOrderVisibi : boolean
|
||
|
}
|