contractSaleIncomeList.jsp 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  4. <div class="easyui-layout" fit="true">
  5. <div region="center" style="padding:0px;border:0px">
  6. <t:datagrid name="contractSaleIncomeList" checkbox="false" pagination="false" fitColumns="true" title="销售合同收款明细" actionUrl="contractSaleIncomeController.do?datagrid&invoiceid=${invoiceid}" idField="id" fit="true" queryMode="group">
  7. <t:dgCol title="主键" field="id" hidden="true" queryMode="single" width="120"></t:dgCol>
  8. <t:dgCol title="创建人名称" field="createName" hidden="true" queryMode="single" width="120"></t:dgCol>
  9. <t:dgCol title="创建人登录名称" field="createBy" hidden="true" queryMode="single" width="120"></t:dgCol>
  10. <t:dgCol title="创建日期" field="createDate" formatter="yyyy-MM-dd" hidden="true" queryMode="single" width="120"></t:dgCol>
  11. <t:dgCol title="更新人名称" field="updateName" hidden="true" queryMode="single" width="120"></t:dgCol>
  12. <t:dgCol title="更新人登录名称" field="updateBy" hidden="true" queryMode="single" width="120"></t:dgCol>
  13. <t:dgCol title="更新日期" field="updateDate" formatter="yyyy-MM-dd" hidden="true" queryMode="single" width="120"></t:dgCol>
  14. <t:dgCol title="所属部门" field="sysOrgCode" hidden="true" queryMode="single" width="120"></t:dgCol>
  15. <t:dgCol title="所属公司" field="sysCompanyCode" hidden="true" queryMode="single" width="120"></t:dgCol>
  16. <t:dgCol title="流程状态" field="bpmStatus" hidden="true" queryMode="single" dictionary="bpm_status" width="120"></t:dgCol>
  17. <t:dgCol title="收款人" field="operatorid" hidden="true" queryMode="single" width="120"></t:dgCol>
  18. <t:dgCol title="收款人姓名" field="operatorname" hidden="true" queryMode="single" width="120"></t:dgCol>
  19. <t:dgCol title="来源单据类型" field="sourcetype" hidden="true" queryMode="single" width="120"></t:dgCol>
  20. <t:dgCol title="来源单据" field="sourcebillid" hidden="true" queryMode="single" width="120"></t:dgCol>
  21. <t:dgCol title="来源单编号" field="sourcebillcode" hidden="true" queryMode="single" width="120"></t:dgCol>
  22. <t:dgCol title="款项总计" field="totalamount" hidden="true" queryMode="single" width="120"></t:dgCol>
  23. <t:dgCol title="累计已收款" field="totalincome" hidden="true" queryMode="single" width="120"></t:dgCol>
  24. <t:dgCol title="收款日期" field="incomedate" formatter="yyyy-MM-dd" align="center" queryMode="single" width="120"></t:dgCol>
  25. <t:dgCol title="本次收款金额" field="incomeamount" formatterjs="formatterNum" align="right" queryMode="single" width="120"></t:dgCol>
  26. <t:dgCol title="收款起始日期" field="periodBegin" align="right" queryMode="single" width="120"></t:dgCol>
  27. <t:dgCol title="收款截止日期" field="periodEnd" align="right" queryMode="single" width="120"></t:dgCol>
  28. <%-- <t:dgCol title="操作" field="opt"></t:dgCol>
  29. <t:dgDelOpt title="取消收款" url="contractSaleIncomeController.do?doDel&id={id}" urlclass="ace_button" urlStyle="background-color:#FF6347" urlfont="fa-trash-o"/> --%>
  30. </t:datagrid>
  31. </div>
  32. </div>
  33. <script src = "webpage/cn/com/lzt/contractsaleincome/contractSaleIncomeList.js"></script>
  34. <script type="text/javascript" src="plug-in/tools/money.js"></script>
  35. <script type="text/javascript">
  36. $(document).ready(function(){
  37. });
  38. //导入
  39. function ImportXls() {
  40. openuploadwin('Excel导入', 'contractSaleIncomeController.do?upload', "contractSaleIncomeList");
  41. }
  42. //导出
  43. function ExportXls() {
  44. JeecgExcelExport("contractSaleIncomeController.do?exportXls","contractSaleIncomeList");
  45. }
  46. //模板下载
  47. function ExportXlsByT() {
  48. JeecgExcelExport("contractSaleIncomeController.do?exportXlsByT","contractSaleIncomeList");
  49. }
  50. </script>