Examples of DloDrugListDetails


Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает вес лекарственной формы
     * @throws ClipsException
     */
    public void setWeight(double weightthrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.weight = weight;
            saveDetails(newDetails);
        } else {
            getDetails().weight = weight;
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

        return dir.getItemFromID(getDetails().weightUnitId);
    }

    public void setWeightUnit(DirectoryDrugWeightUnitItem item) throws ClipsException {
        if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.weightUnitId = item.getID();
            saveDetails(newDetails);
        } else {
            getDetails().weightUnitId = item.getID();
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает фасовку (номер упаковки)
     * @throws ClipsException
     */
    public void setPackNumber(int packNumberthrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.packNumber = packNumber;
            saveDetails(newDetails);
        } else {
            getDetails().packNumber = packNumber;
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает производителя
     * @throws ClipsException
     */
    public void setProducer(String producerthrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.producer = producer;
            saveDetails(newDetails);
        } else {
            getDetails().producer = producer;
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает страну производителя
     * @throws ClipsException
     */
    public void setProducerCountry(String producerCountrythrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.producerCountry = producerCountry;
            saveDetails(newDetails);
        } else {
            getDetails().producerCountry = producerCountry;
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает упаковщика
     * @throws ClipsException
     */
    public void setPacker(String packerthrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.packer = packer;
            saveDetails(newDetails);
        } else {
            getDetails().packer = packer;
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает страну упаковщика
     * @throws ClipsException
     */
    public void setPackerCountry(String packerCountrythrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.packerCountry = packerCountry;
            saveDetails(newDetails);
        } else {
            getDetails().packerCountry = packerCountry;
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает комплектность
     * @throws ClipsException
     */
    public void setCompleteness(String completenessthrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.completeness = completeness;
            saveDetails(newDetails);
        } else {
            getDetails().completeness = completeness;
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

        return dir.getItemFromID(getDetails().farmGroupId);
    }

    public void setFarmGroup(DirectoryDrugFarmGroupItem item) throws ClipsException {
        if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.farmGroupId = item.getID();
            saveDetails(newDetails);
        } else {
            getDetails().farmGroupId = item.getID();
        }
View Full Code Here

Examples of beans.directory.dlodruglist.DloDrugListDetails

     * Назначает признак "Требуется протокол ВК"
     * @throws ClipsException
     */
    public void setKekRequired(boolean kekRequiredthrows ClipsException {
       if(isInDirectory()) {
            DloDrugListDetails newDetails = getDetailsCopy();
            newDetails.kekRequired = kekRequired;
            saveDetails(newDetails);
        } else {
            getDetails().kekRequired = kekRequired;
        }
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.