| | |
| | | { label: '金额', name: 'Money', labtype: 'txt', hidden: false, width: 100 }, |
| | | { label: '余额', name: 'Balance', labtype: 'txt', hidden: false, width: 100 }, |
| | | { label: '收(支)款单位', name: 'PaymentUnit', labtype: 'txt', hidden: false, width: 200 }, |
| | | { label: '摘要', name: 'OperationalMatters', labtype: 'txt', hidden: false, width: 200 }, |
| | | { label: '操作人', name: 'CreaterName', labtype: 'txt', hidden: false, width: 60 }, |
| | | { label: '摘要', name: 'OperationalMatters', labtype: 'txt', hidden: false, width: 200 }, |
| | | { label: '订单号', name: 'Remark', labtype: 'txt', hidden: false, width: 60 }, |
| | | { label: '操作时间', name: 'CreatetimeName', labtype: 'txt', hidden: false, width: 100 }, |
| | | |
| | | ]; |
| | |
| | | { label: '科目名称', name: 'SubjectId', labtype: 'combox', hidden: false, data: JSON.parse(FiSubject) }, |
| | | { label: '记录类型', name: 'RecordTypeId', labtype: 'combox', hidden: false, data: JSON.parse(RecordTypeId) }, |
| | | { label: '摘要', name: 'OperationalMatters', labtype: 'txt', hidden: false }, |
| | | |
| | | { label: '订单号', name: 'Remark', labtype: 'txt', hidden: false }, |
| | | { label: '付款人(单位)', name: 'PaymentUnit', labtype: 'txt', hidden: false }, |
| | | { label: '操作人', name: 'CreaterName', labtype: 'txt', hidden: false }, |
| | | |
| | |
| | | var PaymentUnit = $("#PBSPaymentUnit").val(); |
| | | var CreaterName = $("#PBSCreaterName").val(); |
| | | |
| | | |
| | | var Remark = $("#PBSRemark").val(); |
| | | |
| | | var Createtimestart = $("#PBSCreatetimestart").val(); |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | var url = "/FiAccountIncome/print?Accounttype=" + Accounttype + "&AccountId=" + AccountId + "&SubjectId=" + SubjectId + "&RecordTypeId=" + RecordTypeId + "&OperationalMatters=" + OperationalMatters + "&PaymentUnit=" + PaymentUnit + "&CreaterName=" + CreaterName + "&Createtime=" + Createtime; |
| | | var url = "/FiAccountIncome/print?Accounttype=" + Accounttype + "&AccountId=" + AccountId + "&SubjectId=" + SubjectId + "&RecordTypeId=" + RecordTypeId + "&OperationalMatters=" + OperationalMatters + "&PaymentUnit=" + PaymentUnit + "&CreaterName=" + CreaterName + "&Createtime=" + Createtime + "&Remark=" + Remark; |
| | | var me = window.open(url, "打印"); //打开新窗口 |
| | | |
| | | |