CN108596593A - A method of the pharmacy's shortcut key cash register realized based on B/S framework - Google Patents

A method of the pharmacy's shortcut key cash register realized based on B/S framework Download PDF

Info

Publication number
CN108596593A
CN108596593A CN201810357166.7A CN201810357166A CN108596593A CN 108596593 A CN108596593 A CN 108596593A CN 201810357166 A CN201810357166 A CN 201810357166A CN 108596593 A CN108596593 A CN 108596593A
Authority
CN
China
Prior art keywords
cash register
pharmacy
payment
shortcut key
cashier
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201810357166.7A
Other languages
Chinese (zh)
Inventor
赖名俊
张来卿
庞严冬
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Zhuhai Hengqin Shengda Zhaoye Technology Investment Co Ltd
Original Assignee
Zhuhai Hengqin Shengda Zhaoye Technology Investment Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Zhuhai Hengqin Shengda Zhaoye Technology Investment Co Ltd filed Critical Zhuhai Hengqin Shengda Zhaoye Technology Investment Co Ltd
Priority to CN201810357166.7A priority Critical patent/CN108596593A/en
Publication of CN108596593A publication Critical patent/CN108596593A/en
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q20/00Payment architectures, schemes or protocols
    • G06Q20/08Payment architectures
    • G06Q20/20Point-of-sale [POS] network systems
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • G06F8/24Object-oriented
    • GPHYSICS
    • G07CHECKING-DEVICES
    • G07GREGISTERING THE RECEIPT OF CASH, VALUABLES, OR TOKENS
    • G07G1/00Cash registers
    • G07G1/12Cash registers electronically operated

Abstract

The present invention relates to pharmacy's system cash register platform technology field, more particularly to a kind of pharmacy's system cash register platform based on B/S framework use shortcut key cash register method.The method of the present invention step is:1, cashier automatic jumps to the cash register page after logging in pharmacy's system;2, cashier adds commodity;3, F8 pop-up selection means of payment mode frames are pressed;4, the left and right directions key selection switching means of payment is pressed;5, input frame obtains focus when having switched gathering mode automatically, inputs collection amount;6, Enter is pressed, gathering is completed, closes mode frame.The present invention solves the problems, such as that pharmacy cannot quickly be collected money in cash register system using shortcut key.

Description

A method of the pharmacy's shortcut key cash register realized based on B/S framework
Technical field
The present invention relates to pharmacy's system cash register platform technology field, more particularly to a kind of system of pharmacy realized based on B/S framework The method for shortcut key cash register of uniting.
Background technology
Major part pharmacy system cash register is all C/S frameworks at present, and shortcut key is not used to do, and function is not also complete, no Conducive to shops's merchandising that efficiently, rapidly cash register operation, and at present the means of payment of mainstream have it is several, it is such as existing Gold, Alipay, medical insurance etc.;Shortcut key can not be used to carry out the efficient switching means of payment;In order to solve these problems, reality is needed A kind of existing operation is succinct and can quickly finish the function of cash register.
Invention content
Present invention solves the technical problem that being to provide a kind of pharmacy's system shortcut key based on B/S frameworks realizes cash register Method;Solve the problems, such as that pharmacy's system all cannot complete cash register in cash register using quick key operation.
The present invention solve above-mentioned technical problem technical solution be:
Cashier automatic jumps to the cash register page after logging in pharmacy's system, and items scanning bar code is added in commodity to table, pressed F8 pop-up selection means of payment mode frames press the left and right directions key selection switching means of payment,
Switch means of payment input frame and obtained focus automatically, inputted the cash register amount of money, pressed Enter, completed cash register, closes mode Frame;To solve the problems, such as that shortcut key cash register cannot be used in pharmacy's cash register system.
The method specifically comprises the following steps:
Step 1: cashier automatic jumps to the cash register page after logging in pharmacy's system;
Step 2: cashier adds commodity;
Step 3: pressing F8 pop-up selection cash register mode mode frames;
Step 4: pressing left and right directions key selection switching cash register mode;
Step 5: input frame obtains focus when having switched cash register mode automatically, collection amount is inputted;
Step 6: pressing Enter, gathering is completed, closes mode frame.
Beneficial effects of the present invention:The cash register page, items scanning item are automatic jumped to after cashier logs in pharmacy's system In code addition commodity to table, F8 pop-up selection cash register mode mode frames are pressed, press left and right directions key selection switching payer Formula has switched means of payment input frame and has obtained focus automatically, inputted the cash register amount of money, pressed Enter, completed cash register, closed mode Frame;It solves the problems, such as that shortcut key cash register cannot be used in pharmacy's cash register system.
Description of the drawings
The following further describes the present invention with reference to the drawings:
Fig. 1 is the flow chart of the present invention;
Fig. 2 is the mode frame surface chart of the present invention;
Fig. 3 is the mode frame surface chart of the present invention.
Specific implementation mode
As shown in Figure 1, the present invention uses following steps:
Step 1: cashier logs in pharmacy's system, the cash register page is automatic jumped to;
// log in
@RequestMapping(value = "/login", method = RequestMethod.POST)
public String login(String account, String password) throws Exception{
Subject subject = ShiroUtil.getSubject();
password = MD5Util.encrypt(password, sysConstantService.findSalt ());
UsernamePasswordToken token = new UsernamePasswordToken(account, password);
subject.login(token);
return “/views/pos.jsp”;// jump to the Pos cash register pages
}
Step 2: cashier adds commodity;
Step 3: pressing F8 pop-up selection means of payment mode frames;
// monitor F8 buttons
document.onkeydown = function(e) {
var e = window.event || e || e.which;
var currKey = e.keyCode||e.charCode;
If (e && currKey==119) { //F8 checks out
checkOut();
·····
return false
}
}
Step 4: pressing the left and right directions key selection switching means of payment
// monitor left and right press key
$(document).keyup(function (e) {
if(e.which == 39){
rightChangePayMode()
}else if (e.which == 37) {
leftChangePayMode()
}
})
function rightChangePayMode(){
var selectPayCheck = $('#selectPay').find('.check-select')
var rxModal = $('.iziModal:last')
The page is checked out in // modification and the prescription page exists simultaneously TAB switchings bug
if(rxModal.css('display') == 'block'){
return false
}
if($('#selectPay').is(':visible')){
If (selectPayCheck.text ()==' medical insurance ')
hidePayNum()
}else {
showPayNum()
}
$('#payNum').find('input').focus()
if($('#selectPay span:last-child').hasClass('check- select')){
$('#selectPay span:first-child').addClass('check- select')
$('#selectPay span:last-child').removeClass('check- select')
}else {
selectPayCheck.removeClass('check-select').next().addClass('check- select')
}
}
paymentCut($('#selectPay').find('.check-select'))
}
function leftChangePayMode(){
var selectPayCheck = $('#selectPay').find('.check-select')
if($('#selectPay').is(':visible')){
If (selectPayCheck.text ()==' Alipay ')
hidePayNum()
}else { showPayNum() }
$('#payNum').find('input').focus()
if($('#selectPay span:first-child').hasClass('check-select')){
$('#selectPay span:last-child').addClass('check-select')
$('#selectPay span:first-child').removeClass('check-select')
}else{
selectPayCheck.removeClass('check-select').prev().addClass('check- select')
}
}
paymentCut($('#selectPay').find('.check-select'))
return false
}
Step 5: input frame obtains focus when having switched gathering mode automatically, collection amount is inputted
$ (' #payNum') .find (' input') .focus () // acquisition focus
Step 6: pressing Enter, gathering is completed, closes mode frame
document.onkeydown = function(e) {
var e = window.event || e || e.which;
var currKey = e.keyCode||e.charCode;
If (e && currKey==13) { // carriage return "enter" key"
submitSaleOrder();
hideModal()
}
}
// sales order is submitted, complete gathering
function submitSaleOrder(){
……
}

Claims (2)

1. a kind of method that the cash register platform based on B/S framework realizes quick cash register using shortcut key, it is characterised in that:In cash register Member automatic jumps to the cash register page after logging in pharmacy's system, and items scanning bar code is added in commodity to table, presses F8 pop-up choosings Means of payment mode frame is selected, the left and right directions key selection switching means of payment is pressed, has switched means of payment input frame and obtained automatically Focus inputs the cash register amount of money, presses Enter, completes cash register, closes mode frame;To solve in pharmacy's cash register system not The problem of shortcut key cash register can be used.
2. the method for the pharmacy's cash register system shortcut key cash register according to claim 1 solved based on B/S frameworks, special Sign is:The method specifically includes following steps:
Step 1: cashier automatic jumps to the cash register page after logging in pharmacy's system;
Step 2: cashier adds commodity;
Step 3: pressing F8 pop-up selection means of payment mode frames;
Step 4: pressing the left and right directions key selection switching means of payment;
Step 5: input frame obtains focus when having switched the means of payment automatically, collection amount is inputted;
Step 6: pressing Enter, gathering is completed, closes mode frame.
CN201810357166.7A 2018-04-20 2018-04-20 A method of the pharmacy's shortcut key cash register realized based on B/S framework Pending CN108596593A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201810357166.7A CN108596593A (en) 2018-04-20 2018-04-20 A method of the pharmacy's shortcut key cash register realized based on B/S framework

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201810357166.7A CN108596593A (en) 2018-04-20 2018-04-20 A method of the pharmacy's shortcut key cash register realized based on B/S framework

Publications (1)

Publication Number Publication Date
CN108596593A true CN108596593A (en) 2018-09-28

Family

ID=63613368

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201810357166.7A Pending CN108596593A (en) 2018-04-20 2018-04-20 A method of the pharmacy's shortcut key cash register realized based on B/S framework

Country Status (1)

Country Link
CN (1) CN108596593A (en)

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101686225A (en) * 2008-09-28 2010-03-31 中国银联股份有限公司 Methods of data encryption and key generation for on-line payment
CN204129770U (en) * 2014-10-21 2015-01-28 谢宇杰 A kind of shops's system of operation and management based on internet
CN104424725A (en) * 2013-09-08 2015-03-18 沈阳国裕科技有限公司 POS machine control system

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101686225A (en) * 2008-09-28 2010-03-31 中国银联股份有限公司 Methods of data encryption and key generation for on-line payment
CN104424725A (en) * 2013-09-08 2015-03-18 沈阳国裕科技有限公司 POS machine control system
CN204129770U (en) * 2014-10-21 2015-01-28 谢宇杰 A kind of shops's system of operation and management based on internet

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
会计从业资格考试命题研究组组编: "《会计电算化》", 31 October 2015 *
周莉: "《收银实务》", 28 February 2013 *
陈平: "《管理信息系统实践教程》", 31 January 2015 *

Similar Documents

Publication Publication Date Title
US9514455B2 (en) Mobile device payment
USRE47144E1 (en) Pay at the table system
JP4694605B2 (en) Product sales data processing apparatus and program
US9779400B2 (en) Biometric matching system using input biometric sample
JP4792421B2 (en) Product sales registration data processing device
KR20130104231A (en) Financial fraud suspicious transaction monitoring system and a method thereof
JP5250670B2 (en) Product sales registration data processing device
CN206388286U (en) It is a kind of to merge the POS terminal that vena metacarpea identification and Quick Response Code are paid
JP4210688B2 (en) Cash-out processing method and cash-out processing system
CN108596593A (en) A method of the pharmacy's shortcut key cash register realized based on B/S framework
NO783628L (en) TRANSACTION TERMINAL.
JP5364740B2 (en) Product sales data processing apparatus and program
Abana et al. Self-service checkout system for groceries
JP2002074508A (en) Input terminal device for debit card system
CN210515531U (en) Intelligent payment all-in-one is swept in point inspection brush
CN106569687A (en) Icon arrangement method and apparatus for virtual buttons, and terminal
CN105719061A (en) Off-line cashing management system and method
CN108510676A (en) A method of the cash register platform based on B/S framework realizes that single commodity give a discount using coding with shortcut key
CN205541180U (en) Cloud POS machine of concluding business
JP2007115030A (en) Register device and working time management system
Salvador et al. Ubiquitous computing design principles: supporting human-human and human-computer transactions
CN108491554A (en) A method of pharmacy's cash register system based on B/S framework realizes sheet using shortcut key
CN207558120U (en) A kind of electronic funds device
Sarkar Alternate Channels of Banks and Digital/Cashless Economy: A Micro-Analytical Study on the Awareness and Use of Various Alternate Channels in Guwahati Metropolitan Region
WO2004027723A1 (en) A self-service touchscreen kiosk for use in banks.

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication
RJ01 Rejection of invention patent application after publication

Application publication date: 20180928