|
|
@@ -572,6 +572,13 @@ async function checkLastRecordPlanBuy() {
|
|
|
if (!lotteryRet) {
|
|
|
return;
|
|
|
}
|
|
|
+ let tmpDrawIssue = magicJS.data.read('168_PksPlanTailDrawIssue', '');
|
|
|
+ // 期号
|
|
|
+ let strDrawIssue = String(lotteryRet.drawIssue);
|
|
|
+ if (tmpDrawIssue == strDrawIssue) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
let planArr = lastBetRecord.planStr.split(',');
|
|
|
if (planArr.length > 3) {
|
|
|
return;
|
|
|
@@ -606,6 +613,7 @@ async function checkLastRecordPlanBuy() {
|
|
|
} else {
|
|
|
magicJS.data.write(`DIII_CaiLeYuan_Lottery_${gCaiLeLotteryType}#${ranking}`, `{}`);
|
|
|
}
|
|
|
+ magicJS.data.write('168_PksPlanTailDrawIssue', strDrawIssue);
|
|
|
}
|
|
|
|
|
|
async function checkLongDragonNotify(pksPlanListData, pksPlanItemData) {
|