ReceiptSetting.js 587 B

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