12345678910111213141516171819202122232425262728293031323334 |
- 'use strict';
- /**
- * 资金监管
- *
- * @author ELlisran
- * @date 2019/10/20
- * @version
- */
- const used = ['劳务工工资', '材料款', '机械设备', '劳务结算', '安全经费', '技术服务费', '备用金', '报销款', '电费', '水费', '税费', '零星材料', '内部往来款', '征迁款', '职工工资', '职工社保', '其它'];
- const pay_type = ['网上转账', '支付宝', '微信', '现金', '发票', '其他'];
- // 类型
- // const type = {
- // expenses: 1,
- // income: 2,
- // };
- //
- // const typeMap = {
- // 1: 'expenses',
- // 2: 'income',
- // };
- //
- // const typeName = {
- // 1: '支付',
- // 2: '回款',
- // };
- module.exports = {
- used,
- pay_type,
- // type,
- // typeMap,
- // typeName,
- };
|