package com.sunda.spmsoversea.enums;

/**
 * 海外仓存货损益单据状态枚举
 * @author 0113389
 *
 */
public enum OverseaWhsInventoryLossEnum {
	/**已关闭**/
	DELETE("0", "已关闭", "Closed.", "закрыто."),
	/**草稿**/
	DRAFT("1", "草稿", "Draft.", "черновик."),
	/**待OA审批**/
	PENDING_OA_APPROVAL("2", "待OA审批", "Pending OA Approval.", "Ожидает одобрения OA."),
	/**OA审批退回**/
	OA_APPROVAL_RETURN("3", "OA审批退回", "OA Approval Return.", "OA Вернуть назад."),
	/**OA审批通过**/
	OA_APPROVED("4", "OA审批通过", "OA Approved.", "Одобрение ОА прошло."),
	/**提交SAP成功**/
    SUBMIT_SAP_SUCCESS("5", "提交SAP成功", "Submit to SAP Successfully.", "Отправьте SAP успешно."),
    /**提交SAP失败**/
    SUBMIT_SAP_FAILD("6", "提交SAP失败", "Submit to SAP Faild.", "Не удалось отправить SAP.");
	
	private String code;
    
	private String descZh;
	
	private String descEn;
	private String descRu;

	private OverseaWhsInventoryLossEnum(String code, String descZh, String descEn, String descRu) {
		this.code = code;
		this.descZh = descZh;
		this.descEn = descEn;
		this.descRu = descRu;
	}

	public String getCode() {
		return code;
	}

	public String getDescZh() {
		return descZh;
	}

	public String getDescEn() {
		return descEn;
	}

	public String getDescRu() {
		return descRu;
	}
	
}
