123456789101112131415 |
- function Receipt_Save() {
- $.messager.confirm("系统提示", "提交新的起止收据号,将退出之前的收据,系统将重新按照第一张收据开始打印,是否确认提交?", function (r) {
- if (r) {
- $(document.forms[0]).submit();
- }
- });
- }
- function Receipt_Unload() {
- $.messager.confirm("系统提示", "是否确定退出目前的收据?", function (r) {
- if (r) {
- $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/StudentFee/UnloadReceipt', null, EMISFunction.FormSuccess);
- }
- });
- }
|