Examples of MedicEconomicStandartDetail


Examples of beans.service.mes.entity.MedicEconomicStandartDetail


  @Override
  protected void onUpdate(MedicEconomicStandart entity, EntityDetails details,
            AuditDoc auditDoc, List<AuditDoc> auditDocList) throws ClipsServerException {
    MedicEconomicStandartDetail    det = (MedicEconomicStandartDetail)details;
    entity.setCode(det.code);
    entity.setDiseaseName(det.diseaseName);
    entity.setSizeOfCure(det.sizeOfCure);
    entity.setCriteriaOfQuality(det.criteriaOfQuality);
    entity.setNormalDuration(det.normalDuration);
View Full Code Here

Examples of beans.service.mes.entity.MedicEconomicStandartDetail

            super(al);
  }

  @Override
  protected MedicEconomicStandartDetail getNewDetails() {
    return new MedicEconomicStandartDetail();
  }
View Full Code Here

Examples of beans.service.mes.entity.MedicEconomicStandartDetail

  }

    @Deprecated
  public MedicEconomicStandartLocal getMes(DirectoryClinicTypeItem type, DirectoryMKB10Item mkb) throws ClipsException {
    try {
      MedicEconomicStandartDetail detal = bean().getMes(type.getID(), mkb.getID());
      return new MedicEconomicStandartLocal(detal, am);
    } catch (Exception ex) {
      clearBean();
      throw new ClipsException("Ошибка при получении списка мэсов", ex);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.