clean up
This commit is contained in:
57
lib/domain/constants.dart
Normal file
57
lib/domain/constants.dart
Normal file
@@ -0,0 +1,57 @@
|
||||
const config_collection = "configs";
|
||||
const user_collection = "users";
|
||||
const invitations_collection = "invitations";
|
||||
const setting_doc_id = "setting";
|
||||
const privilege_collection = "privileges";
|
||||
const markets_collection = "markets";
|
||||
const packages_collection = "packages";
|
||||
const messages_collection = "messages";
|
||||
|
||||
const user_requested_status = "requested";
|
||||
const user_invited_status = "invited";
|
||||
|
||||
const pkg_files_path = "/packages";
|
||||
|
||||
// Link page
|
||||
const page_payment_methods = "payment_methods";
|
||||
const page_buying_instructions = "buying_instructions";
|
||||
|
||||
// Message type
|
||||
const message_type_package = "t_p";
|
||||
const message_type_profile = "t_profile";
|
||||
|
||||
//////////////////////////////
|
||||
|
||||
const ok_doc_id = "ok";
|
||||
|
||||
const biz_collection = "bizs";
|
||||
const product_collection = "products";
|
||||
const user_level_collection = "user_levels";
|
||||
const storage_collection = "storages";
|
||||
const buyer_collection = "buyers";
|
||||
const buying_pos = "buying_pos";
|
||||
const selling_pos = "selling_pos";
|
||||
const inventory_takings = "inventory_takings";
|
||||
const inventory_lines = "inventory_lines";
|
||||
const pds_collection = "pds";
|
||||
const pos_collection = "pos";
|
||||
const dos_collection = "dos";
|
||||
const notification_collection = "notifications";
|
||||
const log_collection = "logs";
|
||||
const report_collection = "reports";
|
||||
const po_product_collection = "po_products";
|
||||
const device_collection = "devices";
|
||||
const do_po_lines_collection = "do_po_lines";
|
||||
const reports_collection = "reports";
|
||||
const announcement_collection = "announcements";
|
||||
const report_user_collection = "report_users";
|
||||
|
||||
const po_files_path = "/ok/po";
|
||||
const reg_files_path = "/ok/reg";
|
||||
const do_files_path = "/ok/do";
|
||||
const sign_files_path = "/ok/sign";
|
||||
const bank_images_path = "/ok/banks";
|
||||
|
||||
const po_approved_status = "approved";
|
||||
const po_closed_status = "closed";
|
||||
const do_approved_status = "approved";
|
||||
Reference in New Issue
Block a user