📄 output.java
字号:
/* * $Id: Output.java 5462 2005-08-05 18:35:48Z jonesde $ * * Copyright (c) 2004 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */package org.ofbiz.pos.component;import net.xoetrope.swing.XEdit;import net.xoetrope.xui.XProjectManager;import org.ofbiz.pos.screen.PosScreen;import org.ofbiz.pos.PosTransaction;import org.ofbiz.base.util.UtilProperties;import org.ofbiz.guiapp.xui.XuiSession;import java.util.Locale;/** * * @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @version $Rev: 5462 $ * @since 3.1 */public class Output { public static final String module = Output.class.getName(); // login labels private Locale defaultLocale = Locale.getDefault(); /* Useless since i18n, see pos.properties public static final String ULOGIN = "Enter User ID:"; public static final String UPASSW = "Enter Password:"; // open/close labels public static final String OPDRAM = "Starting Drawer Amount:"; public static final String ENTCAS = "Enter Cash Amount:"; public static final String ENTCHK = "Enter Check Amount:"; public static final String ENTCRC = "Enter Credit Card Amount:"; public static final String ENTGFC = "Enter Gift Card Amount:"; public static final String ENTOTH = "Enter Other Payment Amount:"; // complete sale labels public static final String PAYFIN = "Press Finish To Complete Sale"; public static final String TOTALD = "Total Due: "; public static final String CHANGE = "Change Due: "; // payment (credit/check/gc) labels public static final String CREDNO = "Enter Card Number:"; public static final String CREDEX = "Enter Expiration Date (MMYY):"; public static final String CREDCF = "Enter Last 4 Digits:"; public static final String CREDZP = "Enter Billing ZipCode:"; public static final String REFNUM = "Enter Reference Number:"; public static final String AUTHCD = "Enter Auth Code:"; // standard messages public static final String ISCLOSED = "Register Is Closed"; public static final String ISOPEN = "Register Is Open";*/ protected XuiSession session = null; protected XEdit output = null; public Output(PosScreen page) { this.output = (XEdit) page.findComponent("pos_output"); this.session = page.getSession(); this.output.setFocusable(false); this.clear(); } public void setLock(boolean lock) { if (lock) { this.print(UtilProperties.getMessage("pos","ULOGIN",defaultLocale)); } else { if (PosTransaction.getCurrentTx(session).isOpen()) { this.print(UtilProperties.getMessage("pos","ISOPEN",defaultLocale)); } else { this.print(UtilProperties.getMessage("pos","ISCLOSED",defaultLocale)); } } } public void print(String message) { this.output.setText(message); } public void clear() { output.setText(""); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -