123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- import { Page } from '../page';
- import { ProjectQuotationCompound } from './project-quotation-compound';
- import { ProjectQuotationDetail } from './project-quotation-detail';
- import { ProjectQuotationComments } from './project-quotation-comments';
- import { ProjectQuotationTemplateItem } from './project-quotation-template-item';
- import { ProjectQuotationContacts } from './project-quotation-contacts';
- import { ProjectQuotationTemplate } from './project-quotation-template';
- import { CustomerContacts } from '../basedata/customer-contacts';
- import { ProjectQuotationFee } from './project-quotation-fee';
- import { ProjectQuotationUpload } from './project-quotation-upload';
- import { ProjectQuotationTemplateAdd } from './project-quotation-template-add';
- import { SysAnnouncementSend } from '../sys-announcement-send';
- // 项目报价表
- export class ProjectQuotation extends Page {
- id?: string;
- code?: string;// 报价单号 (非空)
- name?: string;// 项目名称 (非空)
- customerName?: string;// 申办方 (非空)
- quotationDate?: string;// 报价日期 (非空)
- validDate?: string;// 失效日期(有效日期) (非空)
- contractType?: string;// 合同类型 (非空)
- contractTypeName?:string;//合同类型名称
- submission?: string;// 申报
- taxRate?: string;// 税率
- customerAddress?: string;// 客户地址 (非空)
- description?: string;// 描述 (非空)
- matrixType?: string;// 基质类型 (非空)
- projectManager?: string;// 项目经理id
- businessManager?: string;// 商务经理id (非空)
- director?: string;// 总监id (非空)
- generalManager?: string;// 总经理id (非空)
- memo?: string;// 备注
- type?: string;// 类型1项目报价2大分子报价
- status?: string; // 状态0未审核1审核2关闭3已转合同
- enable?: string; // 是否启用0正常1停用
- delFlag?: string; // 删除标记0正常1删除
- compound?: string; // 化合物
- contactPsn?: string; // 联系人
- contactTel?: string; // 联系人电话
- contactEmail?: string; // 联系人邮件
- isDefault?: string; // 是否默认
- Notes?: string; // 联系人备注
- pkCustomerId?: string;// 申办方(客户档案)
- createBy?: string;// 创建人
- createTime?: string;// 创建时间
- updateBy?: string;// 更新人
- updateTime?: string;// 更新时间
- isBusinessExamine?: string;//商务经理是否审核0未审核1审核
- isDirectorExamine?: string;//总监是否审核0未审核1审核
- isGeneralExamine?: string;//总经理是否审核0未审核1审核
- quotationTemplateList?: ProjectQuotationTemplate[]; // 项目报价选择的模板对照表
- quotationTemplateListAdd?: ProjectQuotationTemplateAdd[]; // 项目报价选择的模板对照表
- detectionIndicators?: string;//检测指标
- // quotationCommentsList?:[]; // 项目报价评论明细表
- customerContactsList?: CustomerContacts[] // 客户档案联系人集合
- quotationDetailList?: ProjectQuotationDetail[];// 报价当对照明细
- quotationCompoundList?: ProjectQuotationCompound[];// 化合物对象集合
- quotationContactsList?: ProjectQuotationContacts[];// 客户联系人对象
- quotationTemplateItemList?: ProjectQuotationTemplateItem[];// 项目报价单模板对照对象
- fdProjectQuotationFeeList?: ProjectQuotationFee[];//费用单集合
- fdProjectQuotationUploadList?: ProjectQuotationUpload[];
- businessManagerMemo?: string;// 商务经理描述
- directorMemo?: string;// 总监描述
- generalManagerMemo?: string;// 总经理描述
- quotationCommentsList?: ProjectQuotationComments[];
- quotationType?: string;
- clinicalSectionId?: string;//临床部分审核id
- clinicalSectionMemo?: string;//临床部分默认审核内容
- isClinicalSectionExamine?: string;//临床部分审核状态
- centralPriceId?: string;//中心价格审核人员id
- centralPriceName?: string;//中心价格审核人员名称
- centralPriceMemo?: string;//中心价格默认审核内容
- isCentralPriceExamine?: string;//中心加哥审核状态0未审核1审核
- dataStatisticsId?: string;//数据统计审核人员id
- dataStatisticsName?: string;//数据统计审核人员名称
- dataStatisticsMemo?: string;//数据统计默认审核内容
- isDataStatisticsExamine?: string;//数据统计审核状态0未审核1审核
- pkComputingId?: string;//pk计算审核人员id
- pkComputingName?: string;//pk计算审核人员名称
- pkComputingMemo?: string;//pk计算默认审核内容
- isPkComputingExamine?: string;//pk计算审核状态0未审核1审核
- bioanalysisId?: string;//生物分析审核人员id
- bioanalysisName?: string;//生物分析审核人员名称
- bioanalysisMemo?: string;//生物分析默认审核内容
- isBioanalysisExamine?: string;//生物分析审核状态0未审核1审核
- totalAmount?: string;//总金额
- translate?: string;//报价总数
- proportion?: string;//占比
- signing?: string;//签约数
- endDate?: string;//结束日期
- finalAuditorId?: string;//最后审核人id
- finalAuditorName?: string;//最后审核人名称
- // endDate?:string;//结束日期
- begin?: string;//开始
- over?: string;//结束
- biologicalAnalysisLaboratory?: string;// 生物分析实验室地点
- biologicalAnalysisLaboratoryName?: string;// 生物分析实验室地点name
- hospitalList?: string;// 医院ids
- hospitalListName?: string;// 医院名单name
- abbreviation?: string;//客户缩写
- //空腹总计(费用单)
- fastingSubtotal?: string;
- //餐后总计(费用单)
- postMealSubtotals?: string;
- //总计(费用单)
- costTotal?: string;
- //总计(大分子费用单)
- maCostTotal?: string;
- //币别类型id(数据字典)
- currencyType?: string;
- //币别类型名称
- currencyTypeName?: string;
- //币别类型英文名称
- currencyTypeEgName?: string;
- //币别类型英文名称
- currencyTypeChName?: string;
- //明细合并列
- itemColspanSub?: number;
- //是否上传附件
- isUploadEnclosure?: string;
- //费用1名称
- feeCategory1Title?: string;
- //费用2名称
- feeCategory2Title?: string;
- //最终申办方名称
- sponsorName?:string;
- matrixTypeName?: string;// 基质类型名称 (非空)
- projectManagerName?: string;// 项目经理名称
- clinicalSectionName?: string;// 临床部门
- generalManagerName?: string;// 总经理名字
- quotationTypeName?: string;// 报价类型名字
- submissionName?: string;// 申报名字
- createByName?: string;//制单人名称
- compoundName?: string;//化合物名称
- exportName?:string;//导出文件名称
- //工时查询条件
- languageType?:string;//语言类型0中文1中英文2英文
- relationCode?:string;//关联的主报价号
- relationStart?:number;//关联状态
- pendingAuditorNames?:string;//待审核人
- sysAnnouncementSendList?:SysAnnouncementSend[];//通知人对象
- methodCode?:string;//方法号
- confirmCode?:string;//项目确认号
- validationCode?:string;//验证号
- sampleCode?:string;//样本号
- year?:string;//年份
- drugName?:string;//药品名
- clinicalCode?:string;// 临床方案号
- //报价多选查询条件
- biologicalAnalysisLaboratoryIds?:[];//实验地点
- hospitalListIds?:[];//临床中心ids
- projectManagerIds?:[];//BDids
- quotationTypeIds?:[];//报价类型ids
- createByIds?:[];//报价人员ids
- contractTypeIds?:[];//合同类型ids
- statusIds?:[];//状态
- }
|