Newer
Older
smart-metering-front / src / views / finance / businessSettlement / businessSettlement-interface.ts
// 列表查询参数类型
export interface IListQuery {
  orderCode: string // 委托单编号
  customerNo: string // 委托方代码
  customerName: string // 委托方名称
  deliverer: string // 送样人
  orderTimeStart: string //	委托日期开始
  orderTimeEnd: string //	委托日期结束
  offset: number
  limit: number
}

// 列表查询参数类型
export interface IList {
  id: string // 主键
  orderCode: string // 委托单编号
  customerNo: string // 委托方代码
  customerName: string // 委托方名称
  orderTime: string // 委托日期
  sampleCount: string // 样品数量
  sampleWarehouseName: string // 样品库房
  certWarehouseName: string // 证书库房
  feeStatus: string // 费用状态
  received: string // 是否到账
  actualTestFee: string // 检测费(实)(元)
  shouldTestFee: string // 检测费(应)(元)
  actualTotalFee: string // 实收合计(元)
  receivedAmount: string // 到账金额(元)
  invoiceAmount: string // 开票金额(元)
  orderType: string // 业务结算单类型
}

// 字典
export interface dictType {
  id: string
  name: string
  value: string | number
  label?: string // 基本信息添加的信息名称
}
export interface IsampleList {
  id?: string // 样品id
  price: string // 标价
  relationId: string // 委托单-样品关联表id
  sampleNo?: string // 样品编号
  sampleName?: string // 样品名称
  sampleModel?: string // 型号
  manufacturingNo?: string // 出厂编号
  measureContent?: string // 检定项目
  [key: string]: any
}

// 表单
export interface IForm {
  orderCode: string // 委托单编号
  orderId: string // 委托单id
  customerName: string // 委托方名称
  orderTime: string // 委托日期
  sampleCount: string // 样品数量
  certificationCompany: string // 证书单位名称
  certificationCompanyAddress: string // 证书单位地址
  deliverer: string // 联系人
  delivererTel: string // 联系方式
  sampleWarehouse: string // 样品库房
  certWarehouse: string // 证书库房
  feeStatus: string // 费用状态
  received: string // 是否到账
  actualTestFee: Number // 检测费(实)(元)
  shouldTestFee: Number // 检测费(应)(元)
  actualTotalFee: Number // 实收合计(元)
  receivedAmount: Number // 到账金额(元)
  invoiceAmount: Number // 开票金额(元)
  remark: string // 备注
  orderType: string // 任务单类型
}