diff --git "a/src/rule/com.tencent.mm/app/\345\276\256\344\277\241\345\205\254\344\274\227\345\217\267\345\256\201\346\263\242\351\223\266\350\241\214/main.js" "b/src/rule/com.tencent.mm/app/\345\276\256\344\277\241\345\205\254\344\274\227\345\217\267\345\256\201\346\263\242\351\223\266\350\241\214/main.js" index 75e4b49..47af6e9 100644 --- "a/src/rule/com.tencent.mm/app/\345\276\256\344\277\241\345\205\254\344\274\227\345\217\267\345\256\201\346\263\242\351\223\266\350\241\214/main.js" +++ "b/src/rule/com.tencent.mm/app/\345\276\256\344\277\241\345\205\254\344\274\227\345\217\267\345\256\201\346\263\242\351\223\266\350\241\214/main.js" @@ -9,11 +9,12 @@ const regexMapBOC = [ [ //交易类型:尾号2582-工资-人民币\n交易时间:09月15日 17:00\n交易对象:大夏公司\n交易金额:1696.49\n可用余额:428.97 //交易类型:尾号2582-网络支付消费-人民币\n交易时间:09月16日 10:29\n交易对象:拼多多平台商户\n交易金额:58.75\n可用余额:370.22 + //交易类型:尾号2582-网络支付退款-人民币\n交易时间:09月17日 11:35\n交易对象:上海付费通信息服务有限公司\n交易金额:-3.99\n可用余额:374.21 /交易类型:尾号(\d{4})-(.*?)-人民币\n交易时间:(.*?)\n交易对象:(.*?)\n交易金额:([\d,]+.\d{2})\n可用余额:([\d,]+.\d{2})$/, match => { let [,number,shopItem,time,shopName,money,] = match let billType = BillType.Income; - if (shopItem.indexOf("消费") !==-1 || shopItem.indexOf("支付")!==-1){ + if (shopItem.indexOf("消费") !==-1 ){ billType = BillType.Expend; }