You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Global]
- [bool splitTransac] created for split transaction accommodation
[int mainMenu()]
- Added entry to toggle split entry status.
- Remade main menu output logic
- Added splitTransac status display if splitTransac is true
- Deleted input filter for month, hour, mins
[void writeToFile()]
- Added logic for split transaction
[int main()]
- Increased version number
- Added splitTransac toggle
// To output the status of split transaction mode if there is.
142
+
if (splitTransac) {
143
+
line(50, '-', true);
144
+
cout << "Split transaction mode : True" << endl;
145
+
cout << "Do take note that split transction mode will be switched on until you manually toggle it off. Please make sure that the date, time and title are the same." << endl;
146
+
cout << "Using different label sets and status for each split is not currently supported. Only the first row of those will be used for each split transaction." << endl;
0 commit comments