This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:collection'; | |
| import 'dart:convert'; | |
| import 'dart:io'; | |
| import 'package:intl/intl.dart'; | |
| import 'package:path_provider/path_provider.dart'; | |
| import 'package:pos_system/utils/app_date_utils.dart'; | |
| import 'package:pos_system/utils/app_utils.dart'; | |
| import 'package:pos_system/utils/logger/write_log.dart'; | |
| import 'package:qr_flutter/qr_flutter.dart'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Privacy Policy | |
| Effective Date: 19.06.2024 | |
| Introduction | |
| Welcome to MyClinic ("we", "our", "us"). We are committed to protecting and respecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our application, [Your App Name], designed for managing dental patient records and CRM activities. | |
| Information We Collect |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:8.2-apache | |
| # 1. Install development packages and clean up apt cache. | |
| RUN apt-get update && apt-get install -y \ | |
| curl \ | |
| g++ \ | |
| git \ | |
| libonig-dev \ | |
| libbz2-dev \ | |
| libfreetype6-dev \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Future<void> countQueue() async { | |
| String filePath = r"C:\Windows\System32\spool\PRINTERS"; | |
| File file = File(filePath); | |
| file.readAsString().then((String contents) { | |
| print("File contents:"); | |
| print(contents); | |
| }).catchError((error) { | |
| print("Error reading file: $error"); | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void checkPath() { | |
| String filePath = "C:/Arcus2/CommandLineTool/bin/CommandLineTool.exe"; | |
| File file = File(filePath); | |
| if (file.existsSync()) { | |
| print("File exists."); | |
| callCommandLineTool(1000); | |
| } else { | |
| print("File does not exist."); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stages: | |
| - build | |
| - deploy | |
| build-dev: | |
| stage: build | |
| only: | |
| - dev | |
| tags: | |
| - dev-app-backend |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [email protected] | 10.0.0.2 - - [16/Apr/2024:10:50:56 +0000] "GET / HTTP/1.0" 500 211 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; Trident/5.0)" | |
| [email protected] | [Tue Apr 16 10:53:39.768592 2024] [php:error] [pid 20] [client 10.0.0.2:21674] PHP Fatal error: Uncaught ErrorException: file_put_contents(/var/www/html/storage/framework/views/9065e79a479fcdb86f244f50aa1f572b.php): Failed to open stream: Permission denied in /var/www/html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:205\nStack trace:\n#0 /var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(254): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/var/www/html/v...', 205)\n#1 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}(2, 'file_put_conten...', '/var/www/html/v...', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stages: | |
| - build | |
| - deploy | |
| build-dev: | |
| stage: build | |
| only: | |
| - dev | |
| tags: | |
| - dev-my-app-backend |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TypeAheadField<Patient>( | |
| suggestionsCallback: (search) { | |
| return model.searchPatient; | |
| }, | |
| builder: (context, controller, focusNode) { | |
| return SearchUI( | |
| controller: controller, | |
| focusNode: focusNode, | |
| hintText: getTranslated(context, 'search'), | |
| keyboardType: TextInputType.text, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ApiResponse<T extends Serializable> { | |
| bool? success; | |
| int? code; | |
| T? data; | |
| String? message; | |
| ApiResponse({this.success, this.data, this.message, this.code}); | |
| factory ApiResponse.fromJson(Map<String, dynamic> json, Function(Map<String, dynamic>) create) { |
NewerOlder