/** * 查询财务管理 - 款项 请求 */ export interface QueryBusinessKxReq { relatedid?: string // 现货合同ID, 不填则查所有 applystatus?: string // 申请状态(逗号隔开) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回 } /** * 查询财务管理 - 款项 返回 */ export interface QryBussinessKxRsp { applyid: string;//申请人 applyname: string;//申请人名称 applystatus: number;//申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回 applytime: string;//申请时间 attachurl: string;//附件 auditid: string;//审核人ID auditremark:string;//审核备注 auditname: string;//审核人名称 audittime: string;//审核时间 buyusername: string;//采购方名称 contractno: string;//合同编号 contractstatus: number;//合同状态- number; //:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回 contracttype: number;//现货合同类型 - 1:采购 -1:销售 deductamount: number;//退款(非必填) deliverygoodscode: string;//现货品种代码 deliverygoodsid: number;//现货商品ID deliverygoodsname: string;//现货品种名称 enumdicname: string;//单位名称 goodscode: string;//点价合约 goodsname: string;//商品名称 kxtype: number;//款项类型 1-收付款(PayAmount字段有值) 2-退款(DeductAmount字段有值) 3-收付款/退款(2个字段都有) operateapplyid: string;//操作申请ID(6number; //3+Unix秒时间戳(1number; //位)+xxxxxx) operateapplytype: number;//操作申请类型 - 1:点价 2:结算登记 3:款项登记 4:发票登记 payamount: number;//收付款(非必填) pricemove: number;//升贴水 pricetype: number;//定价类型 - 1:一口价 2:点价 3:暂定价 relatedid: string;//现货合同ID sellusername: string;//销售方名字 userid: number;//用户ID wrstandardcode: string;//品类代码 wrstandardid: number;//品类id wrstandardname: string;//品类名称 } /** * 财务管理/发票 请求 */ export interface QueryBusinessFpReq { relatedid?: string // 现货合同ID, 不填则查所有 applystatus?: string // 申请状态(逗号隔开) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回 } /** * 财务管理/发票 返回 */ export interface QryBussinessFpRsp { applyid: string;//申请人 applyname: string;//申请人名称 applystatus: number;//申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回 applytime: string;//申请时间 attachurl: string;//附件 auditid: string;//审核人ID auditname: string;//审核人名称 audittime: string;//审核时间 buyusername: string;//采购方名称 contractno: string;//合同编号 contractstatus: number;//合同状态- number; //:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回 contracttype: number;//现货合同类型 - 1:采购 -1:销售 deliverygoodscode: string;//现货品种代码 deliverygoodsid: number;//现货商品ID deliverygoodsname: string;//现货品种名称 enumdicname: string;//单位名称 goodscode: string;//点价合约 goodsname: string;//商品名称 InvoiceAmount: number;//已开收票金额(销售为开票,采购为收票) operateapplyid: string;//操作申请ID(6number; //3+Unix秒时间戳(1number; //位)+xxxxxx) operateapplytype: number;//操作申请类型 - 1:点价 2:结算登记 3:款项登记 4:发票登记 pricemove: number;//升贴水 pricetype: number;//定价类型 - 1:一口价 2:点价 3:暂定价 relatedid: string;//现货合同ID sellusername: string;//销售方名字 userid: number;//用户ID wrstandardcode: string;//品类代码 wrstandardid: number;//品类id wrstandardname: string;//品类名称 }