Android Open Source - WarehouseBarcode Work Order






From Project

Back to project page WarehouseBarcode.

License

The source code is released under:

MIT License

If you think the Android project WarehouseBarcode listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.hlgranite.warehousescanner;
/*from  w  w  w .  j av  a2  s .  c o  m*/
import java.util.Date;

/**
 * Created by yeang-shing.then on 9/24/13.
 */
public class WorkOrder {
    private long id;
    public long getId() {
        return this.id;
    }
    private Barcode barcode;
    public Barcode getBarcode() {
        return this.barcode;
    }

    private Date date;
    public Date getDate() {
        return this.date;
    }

    private String customer;
    public String getCustomer() {
        return this.customer;
    }

    private String reference;
    public String getReference() {
        return this.reference;
    }

    public WorkOrder(long id, Barcode barcode, Date date, String customer, String reference) {
        this.id = id;
        this.barcode = barcode;
        this.date = date;
        this.customer = customer;
        this.reference = reference;
    }
    public WorkOrder(long id, String barcode, Date date, String customer, String reference) {
        this.id = id;
        this.barcode = new Barcode(barcode);
        this.date = date;
        this.customer = customer;
        this.reference = reference;
    }

}




Java Source Code List

com.hlgranite.Utils.java
com.hlgranite.warehousescanner.AboutActivity.java
com.hlgranite.warehousescanner.AreaComparator.java
com.hlgranite.warehousescanner.Area.java
com.hlgranite.warehousescanner.BalanceActivity.java
com.hlgranite.warehousescanner.Barcode.java
com.hlgranite.warehousescanner.CheckoutActivity.java
com.hlgranite.warehousescanner.Customer.java
com.hlgranite.warehousescanner.FusionManager.java
com.hlgranite.warehousescanner.HistoryActivity.java
com.hlgranite.warehousescanner.InventoryAdapter.java
com.hlgranite.warehousescanner.InventoryExpandableAdapter.java
com.hlgranite.warehousescanner.MainActivity.java
com.hlgranite.warehousescanner.ManualActivity.java
com.hlgranite.warehousescanner.QuantityComparator.java
com.hlgranite.warehousescanner.SettingsActivity.java
com.hlgranite.warehousescanner.ShipCode.java
com.hlgranite.warehousescanner.Shipment.java
com.hlgranite.warehousescanner.StockCodeComparator.java
com.hlgranite.warehousescanner.Stock.java
com.hlgranite.warehousescanner.Unit.java
com.hlgranite.warehousescanner.Warehouse.java
com.hlgranite.warehousescanner.WorkOrderAdapter.java
com.hlgranite.warehousescanner.WorkOrder.java