机房收费系统之结账
事实上,我觉得机房收费系统中结账的部分是耗我精力最多的。首先我就不明白结账是干嘛的,所以一上来就晕乎乎。后来看了一篇博客说结账方便老板管理的才明白了为什么是操作员。这里面要理清的一点,结账的内容是未结账的。 临时汇总的信息:就是从购卡,充值
事实上,我觉得机房收费系统中结账的部分是耗我精力最多的。首先我就不明白结账是干嘛的,所以一上来就晕乎乎。后来看了一篇博客说结账方便老板管理的才明白了为什么是“操作员”。这里面要理清的一点,结账的内容是未结账的。
临时汇总的信息:就是从“购卡”,“充值”,“退卡”,“临时用户”总结出来的。
图中的选项卡用的是“SSTab”。通过select case语句来判断。
二、代码思路大致是这样的:
首先,从user_Info这张表调出与操作员用户名匹配的操作员真实姓名(username)来直接显示到 combo框中。
然后,通过select case语句来显示sstab中的tab的内容。(显示的内容为未结账)
最后,当点击汇总中的“结账”的时候把信息写入到checkday,checkweek这两张表中,这样做的目的是为了“日结账单”和“周结账单”能够调出结账的信息。
三、总结
我在充值,退卡,注册里面的好多问题都是通过这个重新梳理了一遍。我感觉还是把逻辑设计整明白。
四、问题
我到现在还是不明白周账单显示的应该是一个操作员一天的结账还是几个操作员一天的结账。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)
