Part.java 13.6 KB
Newer Older
akbar fauzi's avatar
akbar fauzi committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
package com.eksad.masterdata.domain;

import com.eksad.ddms.common.util.object.EntityObject;
import com.eksad.ddms.common.util.status.DataStatus;
import com.eksad.ddms.common.util.status.DataStatusMD;
import com.eksad.masterdata.common.listEnum.PartLocalSaleable;
import com.eksad.masterdata.common.listEnum.PartLocalType;
import jakarta.persistence.*;

import java.util.HashSet;
import java.util.Objects;
import java.util.Set;

@Entity
@Table(name = "MST_PART")
public class Part implements EntityObject<Part> {

    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "mst_part_gen")
    @SequenceGenerator(name = "mst_part_gen", sequenceName = "mst_part_seq", allocationSize = 1)
    Integer id;

    private String code;
    //    private String partNumber;
    private String description;
    private Double het;
    private Double basicPrice;
    private String supplierCode;
    private String partGroup;
    private String partReference;
    @Enumerated(EnumType.STRING)
    private DataStatus status;
    private String superseed;
    private Integer minOrderSmallDealer;
    private Integer minOrderMiddleDealer;
    private Integer minOrderBigDealer;
    private String pnt;
    private String partStockType;
    private String partOrigin;
    private String rank;
    private String currentType;
    private String partType; // attribut important/safety/additional
    private String lifeTimeType;
    private String partCategory; // attribut engine/frame/electrical
    private String largePartGroup;
    private String partPhotoURL;
    @Enumerated(EnumType.STRING)
    private DataStatusMD statusMD;
    private String hgpType;
    private boolean hotlinePart;
    private String hotlinePartDeliveryCost;
    private Integer maxQtyHotline;
    private String itemSimilar;
    @Enumerated(EnumType.STRING)
    private DataStatus partStatus;
    @Enumerated(EnumType.STRING)
    private PartLocalType partLocalType;
    private String partMainDealerID;
    private PartLocalSaleable partLocalSaleable;
    private String dealerID;

    @Embedded
    private CreationalSpecification partCreational;

    /**
     * Collections unidirectional * to *
     */
    @ManyToMany(fetch = FetchType.EAGER)
    @JoinTable(name = "JT_PART_PARTTYPEMOTOR", joinColumns = {
            @JoinColumn(name = "id_pdmp", referencedColumnName = "code")}, inverseJoinColumns = {
            @JoinColumn(name = "id_ptm", referencedColumnName = "idPtm")})
    private Set<PartTypeMotor> partTypeMotors = new HashSet<>();

    public Part() {
    }

    public Part(String partID, String partDescription, Double het, Double basicPrice, String supplierCode, String partGroup, String partReference, DataStatus status, String superseed, Integer minOrderSmallDealer, Integer minOrderMiddleDealer, Integer minOrderBigDealer, String pnt, String partStockType, String partOrigin, String rank, String currentType, String partType, String lifeTimeType, String partCategory, String largePartGroup, String partPhotoURL, DataStatusMD statusMD, String hgpType, boolean hotlinePart, String hotlinePartDeliveryCost, Integer maxQtyHotline, String itemSimilar, DataStatus partStatus, CreationalSpecification partCreational, PartLocalType partLocalType, String partMainDealerID, PartLocalSaleable partLocalSaleable, String dealerID) {
        this.code = partID;
        this.description = partDescription;
        this.het = het;
        this.basicPrice = basicPrice;
        this.supplierCode = supplierCode;
        this.partGroup = partGroup;
        this.partReference = partReference;
        this.status = status;
        this.superseed = superseed;
        this.minOrderSmallDealer = minOrderSmallDealer;
        this.minOrderMiddleDealer = minOrderMiddleDealer;
        this.minOrderBigDealer = minOrderBigDealer;
        this.pnt = pnt;
        this.partStockType = partStockType;
        this.partOrigin = partOrigin;
        this.rank = rank;
        this.currentType = currentType;
        this.partType = partType;
        this.lifeTimeType = lifeTimeType;
        this.partCategory = partCategory;
        this.largePartGroup = largePartGroup;
        this.partPhotoURL = partPhotoURL;
        this.statusMD = statusMD;
        this.hgpType = hgpType;
        this.hotlinePart = hotlinePart;
        this.hotlinePartDeliveryCost = hotlinePartDeliveryCost;
        this.maxQtyHotline = maxQtyHotline;
        this.itemSimilar = itemSimilar;
        this.partStatus = partStatus;
        this.partCreational = partCreational;
        this.partLocalType = partLocalType;
        this.partMainDealerID = partMainDealerID;
        this.partLocalSaleable = partLocalSaleable;
        this.dealerID = dealerID;
    }

    public String getItemSimilar() {
        return itemSimilar;
    }

    public void setItemSimilar(String itemSimilar) {
        this.itemSimilar = itemSimilar;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getPartDescription() {
        return description;
    }

    public void setPartDescription(String description) {
        this.description = description;
    }

    public Double getHet() {
        return het;
    }

    public void setHet(Double het) {
        this.het = het;
    }

    public Double getBasicPrice() {
        return basicPrice;
    }

    public void setBasicPrice(Double basicPrice) {
        this.basicPrice = basicPrice;
    }

    public String getPartStockType() {
        return partStockType;
    }

    public void setPartStockType(String partStockType) {
        this.partStockType = partStockType;
    }

    public String getPartOrigin() {
        return partOrigin;
    }

    public void setPartOrigin(String partOrigin) {
        this.partOrigin = partOrigin;
    }

    public String getLargePartGroup() {
        return largePartGroup;
    }

    public void setLargePartGroup(String largePartGroup) {
        this.largePartGroup = largePartGroup;
    }

    public DataStatusMD getStatusMD() {
        return statusMD;
    }

    public void setStatusMD(DataStatusMD statusMD) {
        this.statusMD = statusMD;
    }

    public DataStatus getStatus() {
        return status;
    }

    public void setStatus(DataStatus status) {
        this.status = status;
    }

    public String getSupplierCode() {
        return supplierCode;
    }

    public void setSupplierCode(String supplierCode) {
        this.supplierCode = supplierCode;
    }

    public String getPartGroup() {
        return partGroup;
    }

    public void setPartGroup(String partGroup) {
        this.partGroup = partGroup;
    }

    public String getPartReference() {
        return partReference;
    }

    public void setPartReference(String partReference) {
        this.partReference = partReference;
    }

    public String getSuperseed() {
        return superseed;
    }

    public void setSuperseed(String superseed) {
        this.superseed = superseed;
    }

    public Integer getMinOrderSmallDealer() {
        return minOrderSmallDealer;
    }

    public void setMinOrderSmallDealer(Integer minOrderSmallDealer) {
        this.minOrderSmallDealer = minOrderSmallDealer;
    }

    public Integer getMinOrderMiddleDealer() {
        return minOrderMiddleDealer;
    }

    public void setMinOrderMiddleDealer(Integer minOrderMiddleDealer) {
        this.minOrderMiddleDealer = minOrderMiddleDealer;
    }

    public Integer getMinOrderBigDealer() {
        return minOrderBigDealer;
    }

    public void setMinOrderBigDealer(Integer minOrderBigDealer) {
        this.minOrderBigDealer = minOrderBigDealer;
    }

    public String getPnt() {
        return pnt;
    }

    public void setPnt(String pnt) {
        this.pnt = pnt;
    }

    public String getRank() {
        return rank;
    }

    public void setRank(String rank) {
        this.rank = rank;
    }

    public String getCurrentType() {
        return currentType;
    }

    public void setCurrentType(String currentType) {
        this.currentType = currentType;
    }

    public String getLifeTimeType() {
        return lifeTimeType;
    }

    public void setLifeTimeType(String lifeTimeType) {
        this.lifeTimeType = lifeTimeType;
    }

    public String getPartPhotoURL() {
        return partPhotoURL;
    }

    public void setPartPhotoURL(String partPhotoURL) {
        this.partPhotoURL = partPhotoURL;
    }

    public String getHgpType() {
        return hgpType;
    }

    public void setHgpType(String hgpType) {
        this.hgpType = hgpType;
    }

    public boolean isHotlinePart() {
        return hotlinePart;
    }

    public void setHotlinePart(boolean hotlinePart) {
        this.hotlinePart = hotlinePart;
    }

    public String getHotlinePartDeliveryCost() {
        return hotlinePartDeliveryCost;
    }

    public void setHotlinePartDeliveryCost(String hotlinePartDeliveryCost) {
        this.hotlinePartDeliveryCost = hotlinePartDeliveryCost;
    }

    public Integer getMaxQtyHotline() {
        return maxQtyHotline;
    }

    public void setMaxQtyHotline(Integer maxQtyHotline) {
        this.maxQtyHotline = maxQtyHotline;
    }

    public DataStatus getPartStatus() {
        return partStatus;
    }

    public void setPartStatus(DataStatus partStatus) {
        this.partStatus = partStatus;
    }

    public CreationalSpecification getPartCreational() {
        return partCreational;
    }

    public void setPartCreational(CreationalSpecification partCreational) {
        this.partCreational = partCreational;
    }

    public String getPartType() {
        return partType;
    }

    public void setPartType(String partType) {
        this.partType = partType;
    }

    public String getPartCategory() {
        return partCategory;
    }

    public void setPartCategory(String partCategory) {
        this.partCategory = partCategory;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public Set<PartTypeMotor> getPartTypeMotors() {
        return partTypeMotors;
    }

    public void setPartTypeMotors(Set<PartTypeMotor> partTypeMotors) {
        this.partTypeMotors = partTypeMotors;
    }

    public PartLocalType getPartLocalType() {
        return partLocalType;
    }

    public void setPartLocalType(PartLocalType partLocalType) {
        this.partLocalType = partLocalType;
    }

    public String getPartMainDealerID() {
        return partMainDealerID;
    }

    public void setPartMainDealerID(String partMainDealerID) {
        this.partMainDealerID = partMainDealerID;
    }

    public PartLocalSaleable getPartLocalSaleable() {
        return partLocalSaleable;
    }

    public void setPartLocalSaleable(PartLocalSaleable partLocalSaleable) {
        this.partLocalSaleable = partLocalSaleable;
    }

    public String getDealerID() {
        return dealerID;
    }

    public void setDealerID(String dealerID) {
        this.dealerID = dealerID;
    }

    @Override
    public int hashCode() {
        int hash = 7;
        hash = 59 * hash + Objects.hashCode(this.code);
        hash = 59 * hash + Objects.hashCode(this.description);
        hash = 59 * hash + Objects.hashCode(this.het);
        hash = 59 * hash + Objects.hashCode(this.basicPrice);
        hash = 59 * hash + Objects.hashCode(this.supplierCode);
        hash = 59 * hash + Objects.hashCode(this.partGroup);
        hash = 59 * hash + Objects.hashCode(this.partReference);
        hash = 59 * hash + Objects.hashCode(this.status);
        hash = 59 * hash + Objects.hashCode(this.superseed);
        hash = 59 * hash + Objects.hashCode(this.minOrderSmallDealer);
        hash = 59 * hash + Objects.hashCode(this.minOrderMiddleDealer);
        hash = 59 * hash + Objects.hashCode(this.minOrderBigDealer);
        hash = 59 * hash + Objects.hashCode(this.pnt);
        hash = 59 * hash + Objects.hashCode(this.partStockType);
        hash = 59 * hash + Objects.hashCode(this.partOrigin);
        hash = 59 * hash + Objects.hashCode(this.rank);
        hash = 59 * hash + Objects.hashCode(this.currentType);
        hash = 59 * hash + Objects.hashCode(this.partType);
        hash = 59 * hash + Objects.hashCode(this.lifeTimeType);
        hash = 59 * hash + Objects.hashCode(this.partCategory);
        hash = 59 * hash + Objects.hashCode(this.largePartGroup);
        hash = 59 * hash + Objects.hashCode(this.partPhotoURL);
        hash = 59 * hash + Objects.hashCode(this.statusMD);
        hash = 59 * hash + Objects.hashCode(this.hgpType);
        hash = 59 * hash + Objects.hashCode(this.hotlinePart);
        hash = 59 * hash + Objects.hashCode(this.hotlinePartDeliveryCost);
        hash = 59 * hash + Objects.hashCode(this.maxQtyHotline);
        hash = 59 * hash + Objects.hashCode(this.itemSimilar);
        hash = 59 * hash + Objects.hashCode(this.partStatus);
        hash = 59 * hash + Objects.hashCode(this.partCreational);
        hash = 59 * hash + Objects.hashCode(this.partTypeMotors);
        hash = 59 * hash + Objects.hashCode(this.partLocalType);
        hash = 59 * hash + Objects.hashCode(this.partMainDealerID);
        hash = 59 * hash + Objects.hashCode(this.partLocalSaleable);
        hash = 59 * hash + Objects.hashCode(this.dealerID);
        return hash;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final Part other = (Part) obj;
        if (!Objects.equals(this.id, other.id)) {
            return false;
        }
        return true;
    }

    @Override
    public boolean sameIdentityAs(Part other) {
        return this.equals(other);
    }
}