financial.js 750 B

12345678910111213141516171819202122232425262728293031323334
  1. 'use strict';
  2. /**
  3. * 资金监管
  4. *
  5. * @author ELlisran
  6. * @date 2019/10/20
  7. * @version
  8. */
  9. const used = ['劳务工工资', '材料款', '机械设备', '劳务结算', '安全经费', '技术服务费', '备用金', '报销款', '电费', '水费', '税费', '零星材料', '内部往来款', '征迁款', '职工工资', '职工社保', '其它'];
  10. const pay_type = ['网上转账', '支付宝', '微信', '现金', '发票', '其他'];
  11. // 类型
  12. // const type = {
  13. // expenses: 1,
  14. // income: 2,
  15. // };
  16. //
  17. // const typeMap = {
  18. // 1: 'expenses',
  19. // 2: 'income',
  20. // };
  21. //
  22. // const typeName = {
  23. // 1: '支付',
  24. // 2: '回款',
  25. // };
  26. module.exports = {
  27. used,
  28. pay_type,
  29. // type,
  30. // typeMap,
  31. // typeName,
  32. };