2020-09-13 21:49:39 +06:30
|
|
|
const config_collection = "configs";
|
|
|
|
|
const user_collection = "users";
|
|
|
|
|
const invitations_collection = "invitations";
|
2020-09-04 01:42:58 +06:30
|
|
|
const setting_doc_id = "setting";
|
2020-09-13 21:49:39 +06:30
|
|
|
const privilege_collection = "privileges";
|
2020-09-16 02:29:50 +06:30
|
|
|
const markets_collection = "markets";
|
|
|
|
|
const packages_collection = "packages";
|
2020-09-13 21:49:39 +06:30
|
|
|
|
2020-09-17 06:02:48 +06:30
|
|
|
const user_requested_status = "requested";
|
|
|
|
|
const user_invited_status = "invited";
|
|
|
|
|
|
|
|
|
|
const pkg_files_path = "/packages";
|
|
|
|
|
|
2020-09-18 21:33:41 +06:30
|
|
|
// Link page
|
|
|
|
|
const page_payment_methods = "payment_methods";
|
|
|
|
|
const page_buying_instructions = "buying_instructions";
|
|
|
|
|
//////////////////////////////
|
|
|
|
|
|
2020-09-13 21:49:39 +06:30
|
|
|
const ok_doc_id = "ok";
|
2020-09-04 01:42:58 +06:30
|
|
|
|
|
|
|
|
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";
|