mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/cief-dashboard.git
synced 2026-08-19 04:24:13 +00:00
fixed uploading update error
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,18 @@
|
||||
from app import *
|
||||
|
||||
# layout
|
||||
layout = html.Div([
|
||||
html.H1('Conversion Rate'),
|
||||
dcc.Graph(id='output-conversion_rate'),
|
||||
])
|
||||
|
||||
@app.callback(
|
||||
Output('output-conversion_rate', 'figure'),
|
||||
Input('data-conversion_rate', 'data'))
|
||||
def update_figure(data):
|
||||
# conversion_rate
|
||||
conversion_rate_animation=pd.read_json(data['conversion_rate_animation'])
|
||||
fig_conversion_rate=px.bar(conversion_rate_animation, x="Date", y="Conversion rate", color='Type', hover_data=['Register count', 'Converted count'], animation_frame="Number of week based", range_y=[0,0.5], barmode='group', title='Register to Use Conversion Rate')
|
||||
update_theme(fig_conversion_rate)
|
||||
fig_conversion_rate.update_yaxes(tickformat=".2%")
|
||||
return(fig_conversion_rate)
|
||||
@@ -31,6 +31,7 @@ def plot(df, log=True):
|
||||
|
||||
return(fig_total, fig_percentage, fig_r0)
|
||||
|
||||
# layout
|
||||
layout = html.Div([
|
||||
dbc.Row([
|
||||
dbc.Col([
|
||||
|
||||
+69
-51
@@ -7,19 +7,45 @@ def get_data():
|
||||
covid_malaysia=pd.read_csv('data/covid_19/malaysia1.csv', parse_dates=['Date'])
|
||||
covid_world_wide=pd.read_csv('data/covid_19/worldwide1.csv', parse_dates=['Date'])
|
||||
|
||||
# sql
|
||||
amount, booking_rate, exchange_marking=get_sql()
|
||||
|
||||
data={'warehouse':warehouse, 'billing':billing, 'marketing':marketing,
|
||||
'covid_malaysia':covid_malaysia, 'covid_world_wide':covid_world_wide}
|
||||
'covid_malaysia':covid_malaysia, 'covid_world_wide':covid_world_wide, 'amount':amount, 'booking_rate':booking_rate, 'exchange_marking':exchange_marking}
|
||||
to_json(data)
|
||||
print('got data')
|
||||
return(data)
|
||||
|
||||
# layout
|
||||
layout = html.Div([
|
||||
dcc.Store(id='data', data=get_data()),
|
||||
dcc.Store(id='data-summery'),
|
||||
dcc.Store(id='data-machine_learning'),
|
||||
dcc.Store(id='data-monthly'),
|
||||
])
|
||||
def get_sql():
|
||||
# transfer amount
|
||||
amount = pd.read_sql("select bookings.created_at, user_id, transfer_amount, term, status, is_approve, is_reject, is_cancel from user_bank_slips left join bookings on user_bank_slips.booking_id=bookings.id;", con=db_connection)
|
||||
amount.columns=['Date', 'User id', 'Transfer amount', 'Term', 'Status', 'Approved', 'Rejected', 'Canceled']
|
||||
# remove testing user
|
||||
amount=amount.mask(amount['User id']==1).dropna()
|
||||
amount=amount.mask(amount['Status']<=2).dropna()
|
||||
amount=amount.where(amount['Approved']==1).dropna()
|
||||
amount=amount.where(amount['Rejected']==0).dropna()
|
||||
amount=amount.where(amount['Canceled']==0).dropna()
|
||||
amount=amount.loc[:, ['Date','Transfer amount', 'Term']]
|
||||
|
||||
# booking rate
|
||||
booking_rate = pd.read_sql("select created_at, rate from bookings", con=db_connection)
|
||||
booking_rate.columns=['Date','Booking rate']
|
||||
correct_outlier(booking_rate['Booking rate'])
|
||||
booking_rate['Date']=booking_rate['Date'].dt.strftime('%Y-%m-%d')
|
||||
booking_rate=booking_rate['Booking rate'].groupby(booking_rate['Date']).mean()
|
||||
booking_rate=pd.DataFrame(booking_rate).reset_index()
|
||||
|
||||
# exchange marking
|
||||
exchange_marking = pd.read_sql("select bookings.created_at, marking from bookings left join users on bookings.user_id=users.id;", con=db_connection)
|
||||
exchange_marking.columns=['Date', 'Marking']
|
||||
exchange_marking['Date']=pd.to_datetime(exchange_marking['Date'].dt.strftime('%Y-%m-%d'))
|
||||
exchange_marking=exchange_marking.where(exchange_marking['Marking'].str.contains("/")).dropna()
|
||||
marking_replace={"$":"/"}
|
||||
exchange_marking['Marking'].replace(to_replace=marking_replace,regex=True,inplace=True)
|
||||
exchange_marking['Marking']=exchange_marking['Marking'].str.extract("(CIEF/\w+)/",expand=False)
|
||||
|
||||
return(amount, booking_rate, exchange_marking)
|
||||
|
||||
def get_periods(df, frequency='day'):
|
||||
df=df.copy()
|
||||
@@ -87,36 +113,14 @@ def get_conversion_rate_animation(register_count, register_marking, transport_ma
|
||||
animation_conversion.reset_index(drop=True, inplace=True)
|
||||
return(animation_conversion)
|
||||
|
||||
def get_sql():
|
||||
# transfer amount
|
||||
amount = pd.read_sql("select bookings.created_at, user_id, transfer_amount, term, status, is_approve, is_reject, is_cancel from user_bank_slips left join bookings on user_bank_slips.booking_id=bookings.id;", con=db_connection)
|
||||
amount.columns=['Date', 'User id', 'Transfer amount', 'Term', 'Status', 'Approved', 'Rejected', 'Canceled']
|
||||
# remove testing user
|
||||
amount=amount.mask(amount['User id']==1).dropna()
|
||||
amount=amount.mask(amount['Status']<=2).dropna()
|
||||
amount=amount.where(amount['Approved']==1).dropna()
|
||||
amount=amount.where(amount['Rejected']==0).dropna()
|
||||
amount=amount.where(amount['Canceled']==0).dropna()
|
||||
amount=amount.loc[:, ['Date','Transfer amount', 'Term']]
|
||||
|
||||
# booking rate
|
||||
booking_rate = pd.read_sql("select created_at, rate from bookings", con=db_connection)
|
||||
booking_rate.columns=['Date','Booking rate']
|
||||
correct_outlier(booking_rate['Booking rate'])
|
||||
booking_rate['Date']=booking_rate['Date'].dt.strftime('%Y-%m-%d')
|
||||
booking_rate=booking_rate['Booking rate'].groupby(booking_rate['Date']).mean()
|
||||
booking_rate=pd.DataFrame(booking_rate).reset_index()
|
||||
|
||||
# exchange marking
|
||||
exchange_marking = pd.read_sql("select bookings.created_at, marking from bookings left join users on bookings.user_id=users.id;", con=db_connection)
|
||||
exchange_marking.columns=['Date', 'Marking']
|
||||
exchange_marking['Date']=pd.to_datetime(exchange_marking['Date'].dt.strftime('%Y-%m-%d'))
|
||||
exchange_marking=exchange_marking.where(exchange_marking['Marking'].str.contains("/")).dropna()
|
||||
marking_replace={"$":"/"}
|
||||
exchange_marking['Marking'].replace(to_replace=marking_replace,regex=True,inplace=True)
|
||||
exchange_marking['Marking']=exchange_marking['Marking'].str.extract("(CIEF/\w+)/",expand=False)
|
||||
|
||||
return(amount, booking_rate, exchange_marking)
|
||||
# layout
|
||||
layout = html.Div([
|
||||
dcc.Store(id='data', data=get_data()),
|
||||
dcc.Store(id='data-summery'),
|
||||
dcc.Store(id='data-machine_learning'),
|
||||
dcc.Store(id='data-monthly'),
|
||||
dcc.Store(id='data-conversion_rate'),
|
||||
])
|
||||
|
||||
@app.callback(
|
||||
Output('data-summery', 'data'),
|
||||
@@ -125,12 +129,8 @@ def get_sql():
|
||||
def get_summery_data(modified_timestamp, data):
|
||||
to_df(data)
|
||||
|
||||
# load
|
||||
warehouse=data['warehouse']
|
||||
billing=data['billing']
|
||||
amount, booking_rate, exchange_marking=get_sql()
|
||||
|
||||
# proprocess cbm
|
||||
warehouse=data['warehouse']
|
||||
cbm=warehouse.loc[:,['Date', 'CBM']]
|
||||
correct_outlier(cbm['CBM'])
|
||||
cbms=[]
|
||||
@@ -143,6 +143,7 @@ def get_summery_data(modified_timestamp, data):
|
||||
to_json(cbms)
|
||||
|
||||
# proprocess X1 X2 amount
|
||||
amount=data['amount']
|
||||
x1=amount.where(amount['Term'].str.contains('x1')).drop('Term', axis=1).dropna().rename(columns={'Transfer amount':'X1 amount'})
|
||||
x2=amount.where(amount['Term'].str.contains('x2')).drop('Term', axis=1).dropna().rename(columns={'Transfer amount':'X2 amount'})
|
||||
x1_x2=pd.merge(x1, x2, how="outer", on='Date')
|
||||
@@ -183,17 +184,11 @@ def get_summery_data(modified_timestamp, data):
|
||||
delivery.sort_values(['Date'],inplace=True)
|
||||
delivery=pd.melt(delivery, 'Date')
|
||||
|
||||
# conversion rate
|
||||
register_marking=billing.loc[:,['Date', 'Marking']]
|
||||
register_count=register_marking['Marking'].groupby(register_marking['Date']).count()
|
||||
register_count=pd.DataFrame({'Register count':register_count}).reset_index()
|
||||
transport_marking=warehouse.loc[:,['Date', 'Cleaned marking']]
|
||||
transport_marking.rename(columns={'Cleaned marking':'Marking'}, inplace=True)
|
||||
conversion_rate_animation=get_conversion_rate_animation(register_count, register_marking, transport_marking, exchange_marking)
|
||||
booking_rate=data['booking_rate']
|
||||
|
||||
# save
|
||||
data={'place':place, 'booking_rate':booking_rate, 'n_transfer':n_transfer, 'ctn':ctn,
|
||||
'delivery':delivery, 'conversion_rate_animation':conversion_rate_animation}
|
||||
'delivery':delivery}
|
||||
to_json(data)
|
||||
data['cbms']=cbms
|
||||
data['x1_x2s']=x1_x2s
|
||||
@@ -268,3 +263,26 @@ def get_monthly_data(modified_timestamp, data):
|
||||
to_json(data)
|
||||
print('got monthly data')
|
||||
return(data)
|
||||
|
||||
@app.callback(
|
||||
Output('data-conversion_rate', 'data'),
|
||||
Input('data', 'modified_timestamp'),
|
||||
State('data', 'data'), prevent_initial_call=True)
|
||||
def get_monthly_data(modified_timestamp, data):
|
||||
to_df(data)
|
||||
|
||||
# conversion rate
|
||||
billing=data['billing']
|
||||
register_marking=billing.loc[:,['Date', 'Marking']]
|
||||
register_count=register_marking['Marking'].groupby(register_marking['Date']).count()
|
||||
register_count=pd.DataFrame({'Register count':register_count}).reset_index()
|
||||
warehouse=data['warehouse']
|
||||
transport_marking=warehouse.loc[:,['Date', 'Cleaned marking']]
|
||||
transport_marking.rename(columns={'Cleaned marking':'Marking'}, inplace=True)
|
||||
exchange_marking=data['exchange_marking']
|
||||
conversion_rate_animation=get_conversion_rate_animation(register_count, register_marking, transport_marking, exchange_marking)
|
||||
|
||||
data={'conversion_rate_animation':conversion_rate_animation}
|
||||
to_json(data)
|
||||
print('got conversion rate data')
|
||||
return(data)
|
||||
|
||||
+4
-4
@@ -13,7 +13,7 @@ layout = html.Div([
|
||||
dbc.Col(dcc.Graph(id='output-destination')),
|
||||
dbc.Col(dcc.Graph(id='output-remark')),
|
||||
dbc.Col(dcc.Graph(id='output-source')),
|
||||
dbc.Col(dcc.Graph(id='output-conversion_rate')),
|
||||
dbc.Col(dcc.Graph(id='output-enquiry_conversion_rate')),
|
||||
]),
|
||||
|
||||
dbc.Row([
|
||||
@@ -43,7 +43,7 @@ def update_drop_down_menu(data):
|
||||
[Output('output-cbm', 'figure'),
|
||||
Output('output-source', 'figure'),
|
||||
Output('output-accumulated', 'figure'),
|
||||
Output('output-conversion_rate', 'figure'),
|
||||
Output('output-enquiry_conversion_rate', 'figure'),
|
||||
Output('output-customer_cbm', 'figure'),
|
||||
Output('output-destination', 'figure'),
|
||||
Output('output-remark', 'figure')],
|
||||
@@ -130,7 +130,7 @@ def display_selected_data(selectedData, data):
|
||||
customer_cbm=cbm.where(cbm['Cleaned marking'].isin(selected_marking)).dropna()
|
||||
customer_cbm.sort_values(by='Date', inplace=True)
|
||||
customer_cbm['Accumulated CBM']=customer_cbm['CBM'].cumsum()
|
||||
customer_cbm['Accumulated CTN']=customer_cbm['CTN'].cumsum()
|
||||
fig_customer_cbm=px.line(customer_cbm, x='Date', y='Accumulated CBM', title=selected_marking[0])
|
||||
# customer_cbm['Accumulated CTN']=customer_cbm['CTN'].cumsum()
|
||||
fig_customer_cbm=px.bar(customer_cbm, x='Date', y='CBM', title=selected_marking[0])
|
||||
update_theme(fig_customer_cbm)
|
||||
return(fig_customer_cbm)
|
||||
|
||||
+1
-10
@@ -24,7 +24,6 @@ layout = html.Div([
|
||||
dbc.Tab(dcc.Graph(id='output-n_transfer'), label="Number of transfer"),
|
||||
dbc.Tab(dcc.Graph(id='output-ctn'), label="CTN"),
|
||||
dbc.Tab(dcc.Graph(id='output-delivery'), label="Delivery"),
|
||||
dbc.Tab(dcc.Graph(id='output-marking_to_use_conversion_rate'), label="Register to Use Conversion Rate"),
|
||||
]),
|
||||
dbc.Row([
|
||||
dcc.Graph(id='output-place')
|
||||
@@ -36,8 +35,6 @@ layout = html.Div([
|
||||
Output('output-n_transfer', 'figure'),
|
||||
Output('output-ctn', 'figure'),
|
||||
Output('output-delivery', 'figure'),
|
||||
Output('output-marking_to_use_conversion_rate', 'figure'),
|
||||
|
||||
Output('output-place', 'figure'),
|
||||
|
||||
Output('output-volume_day', 'figure'),
|
||||
@@ -112,13 +109,7 @@ def update_figure(data):
|
||||
fig_delivery=px.line(delivery, x="Date",y="value",color="variable")
|
||||
update_theme(fig_delivery)
|
||||
|
||||
# conversion_rate
|
||||
conversion_rate_animation=data['conversion_rate_animation']
|
||||
fig_conversion_rate=px.bar(conversion_rate_animation, x="Date", y="Conversion rate", color='Type', hover_data=['Register count', 'Converted count'], animation_frame="Number of week based", range_y=[0,0.5], barmode='group', title='Register to Use Conversion Rate')
|
||||
update_theme(fig_conversion_rate)
|
||||
fig_conversion_rate.update_yaxes(tickformat=".2%")
|
||||
|
||||
# save
|
||||
figs=[fig_rate, fig_count, fig_ctn, fig_delivery, fig_conversion_rate, fig_place]
|
||||
figs=[fig_rate, fig_count, fig_ctn, fig_delivery, fig_place]
|
||||
figs=figs+fig_cbms+fig_x1_x2s
|
||||
return(figs)
|
||||
|
||||
+4
-3
@@ -1,5 +1,5 @@
|
||||
from app import *
|
||||
from apps import data
|
||||
from apps.data import get_data
|
||||
import base64
|
||||
import io
|
||||
import pgeocode
|
||||
@@ -212,10 +212,11 @@ def update_output(warehouse_data, covid_data):
|
||||
Input('output-upload_result', 'children'),
|
||||
State('input-interval', 'n_intervals'))
|
||||
def reload_data(content, n_intervals):
|
||||
if content is None:
|
||||
raise(PreventUpdate)
|
||||
if content['props']['color']=='success':
|
||||
data=data.get_data()
|
||||
n_intervals=n_intervals+1
|
||||
print('reloaded')
|
||||
return(data, n_intervals)
|
||||
return(n_intervals)
|
||||
else:
|
||||
raise(PreventUpdate)
|
||||
|
||||
+6
-6
@@ -954,7 +954,7 @@ x,CIEF/2119ICD,Fong chooi ching,,In Curtain Deaign
|
||||
11 Nov,CIEF/2172IPS,IDEA PLUS SHOP,,CA0287785-D
|
||||
11 Nov,CIEF/2173JWT,Tan Jia Wen,,
|
||||
11 Nov,SRW/CIEF/2174JSH,Jong siaw hong,,
|
||||
11 Nov,CIEF/2175CPK,Chu Pei Kah,v,920404145436
|
||||
11 Nov,CIEF/2175CPK,Chu Pei Kah,,920404145436
|
||||
12 Nov,CIEF/2176JCS,"Jackson Kong Chun Sheng
|
||||
",,
|
||||
12 Nov,SRW/CIEF/2177BRL,BRIGHTLIFT ENTERPRISE,,
|
||||
@@ -994,7 +994,7 @@ x,CIEF/2119ICD,Fong chooi ching,,In Curtain Deaign
|
||||
21 Nov,CIEF/2205BFH,Baffi Haus,,
|
||||
21 Nov,CIEF/2206SWL,ONG SWEE LIANN,,
|
||||
23 Nov,CIEF/2207ICY,i cahaya enterprise,,
|
||||
23 Nov,CIEF/2208JGO,JG ONLINE STORE,V,
|
||||
23 Nov,CIEF/2208JGO,JG ONLINE STORE,,
|
||||
23 Nov,CIEF/2209MNB,Minibebe Collections,,
|
||||
23 Nov,CIEF/2210ZHC,ooi zhen ching,,
|
||||
23 Nov,CIEF/2211YKH,"YAP KHOON HWA
|
||||
@@ -1006,10 +1006,10 @@ x,CIEF/2119ICD,Fong chooi ching,,In Curtain Deaign
|
||||
24 Nov,CIEF/2216JSU,Joshua Tan Cheng Yong,,
|
||||
24 Nov,CIEF/2217YCF,YONG CHUNG FAI,,
|
||||
25 Nov,CIEF/2218HKY,HEE KAI YI,,
|
||||
,CIEF/2219,,,
|
||||
,CIEF/2220,,,
|
||||
,CIEF/2221,,,
|
||||
,CIEF/2222,,,
|
||||
25 Nov,CIEF/2219TSF,Tee Su Fang,,
|
||||
26 Nov,CIEF/2220FCY,FOO CHUK YEN,,
|
||||
26 Nov,CIEF/2221SWF,LIOW SIEW FOONG,ic,
|
||||
26 Nov,CIEF/2222WWG,Liew siew cheng,add,
|
||||
,CIEF/2223,,,
|
||||
,CIEF/2224,,,
|
||||
,CIEF/2225,,,
|
||||
|
||||
|
+4
-4
@@ -956,10 +956,10 @@ Date,Marking,Name
|
||||
2020-09-23,CIEF/2216JSU,JoshuaTanChengYong
|
||||
2020-09-23,CIEF/2217YCF,YONGCHUNGFAI
|
||||
2020-09-23,CIEF/2218HKY,HEEKAIYI
|
||||
2020-09-23,CIEF/2219,
|
||||
2020-09-23,CIEF/2220,
|
||||
2020-09-23,CIEF/2221,
|
||||
2020-09-23,CIEF/2222,
|
||||
2020-09-23,CIEF/2219TSF,TeeSuFang
|
||||
2020-09-23,CIEF/2220FCY,FOOCHUKYEN
|
||||
2020-09-23,CIEF/2221SWF,LIOWSIEWFOONG
|
||||
2020-09-23,CIEF/2222WWG,Liewsiewcheng
|
||||
2020-09-23,CIEF/2223,
|
||||
2020-09-23,CIEF/2224,
|
||||
2020-09-23,CIEF/2225,
|
||||
|
||||
|
+424
@@ -0,0 +1,424 @@
|
||||
"Post ID",Permalink,"Post Message",Type,Countries,Languages,Posted,"Audience targeting","Lifetime Post Total Reach","Lifetime Post organic reach","Lifetime Post Paid Reach","Lifetime Post Total Impressions","Lifetime Post Organic Impressions","Lifetime Post Paid Impressions","Lifetime Engaged Users","Lifetime Matched Audience Targeting Consumers on Post","Lifetime Matched Audience Targeting Consumptions on Post","Lifetime Negative Feedback from Users","Lifetime Negative Feedback","Lifetime Post Impressions by people who have liked your Page","Lifetime Post reach by people who like your Page","Lifetime Post Paid Impressions by people who have liked your Page","Lifetime Paid reach of a post by people who like your Page","Lifetime People who have liked your Page and engaged with your post","Lifetime Organic views to 95%","Lifetime Organic views to 95%","Lifetime Paid views to 95%","Lifetime Paid views to 95%","Lifetime Organic Video Views","Lifetime Organic Video Views","Lifetime Paid Video Views","Lifetime Paid Video Views","Lifetime Average time video viewed","Lifetime Video length","Lifetime Talking About This (Post) by action type - like","Lifetime Talking About This (Post) by action type - comment","Lifetime Talking About This (Post) by action type - share","Lifetime Post Stories by action type - share","Lifetime Post Stories by action type - like","Lifetime Post Stories by action type - comment","Lifetime Post Audience Targeting Unique Consumptions by Type - other clicks","Lifetime Post Audience Targeting Unique Consumptions by Type - link clicks","Lifetime Post Audience Targeting Unique Consumptions by Type - photo view","Lifetime Post Audience Targeting Unique Consumptions by Type - video play","Lifetime Matched Audience Targeting Consumptions by Type - other clicks","Lifetime Matched Audience Targeting Consumptions by Type - link clicks","Lifetime Matched Audience Targeting Consumptions by Type - photo view","Lifetime Matched Audience Targeting Consumptions by Type - video play","Lifetime Negative Feedback from Users by Type - hide_clicks","Lifetime Negative Feedback from Users by Type - hide_all_clicks","Lifetime Negative Feedback by Type - hide_clicks","Lifetime Negative Feedback by Type - hide_all_clicks"
|
||||
,,,,,,,,"Lifetime: The number of people who had your Page's post enter their screen. Posts include statuses, photos, links, videos and more. (Unique Users)","Lifetime: The number of people who had your Page's post enter their screen through unpaid distribution. (Unique Users)","Lifetime: The number of people who had your Page's post enter their screen through paid distribution such as an ad. (Unique Users)","Lifetime: The number of times your Page's post entered a person's screen. Posts include statuses, photos, links, videos and more. (Total Count)","Lifetime: The number of times your Page's posts entered a person's screen through unpaid distribution. (Total Count)","Lifetime: The number of times your Page's post entered a person's screen through paid distribution such as an ad. (Total Count)","Lifetime: The number of unique people who engaged in certain ways with your Page post, for example by commenting on, liking, sharing, or clicking upon particular elements of the post. (Unique Users)","Lifetime: The number of people who matched the audience targeting that clicked anywhere in your post on News Feed. (Unique Users)","Lifetime: The number of clicks anywhere in your post on News Feed from the user that matched the audience targeting on it. (Total Count)","Lifetime: The number of people who have given negative feedback to your post. (Unique Users)","Lifetime: The number of times people have given negative feedback to your post. (Total Count)","Lifetime: The number of impressions of your Page post to people who have liked your Page. (Total Count)","Lifetime: The number of people who saw your Page post because they've liked your Page (Unique Users)","Lifetime: The number of paid impressions of your Page post to people who have liked your Page. (Total Count)","Lifetime: The number of people who like your Page and who saw your Page post in an ad or sponsored story. (Unique Users)","Lifetime: The number of people who have liked your Page and clicked anywhere in your posts. (Unique Users)","Lifetime: Number of times your video was viewed to 95% of its length without any paid promotion. (Unique Users)","Lifetime: Number of times your video was viewed to 95% of its length without any paid promotion. (Total Count)","Lifetime: Number of times your video was viewed to 95% of its length after paid promotion. (Unique Users)","Lifetime: Number of times your video was viewed to 95% of its length after paid promotion. (Total Count)","Lifetime: Number of times your video was viewed for more than 3 seconds without any paid promotion. (Unique Users)","Lifetime: Number of times your video was viewed for more than 3 seconds without any paid promotion. (Total Count)","Lifetime: Number of times your video was viewed more than 3 seconds after paid promotion. (Unique Users)","Lifetime: Number of times your video was viewed more than 3 seconds after paid promotion. (Total Count)","Lifetime: Average time video viewed (Total Count)","Lifetime: Length of a video post (Total Count)","Lifetime: The number of unique people who created a story about your Page post by interacting with it. (Unique Users)",,,"Lifetime: The number of stories created about your Page post, by action type. (Total Count)",,,"Lifetime: The number of people who matched the audience targeting on the post that clicked anywhere in the post on News Feed, by type. (Unique Users)",,,,"Lifetime: The number of clicks anywhere in the post on News Feed from users that matched the audience targeting on the post, by type. (Total Count)",,,,"Lifetime: The number of times people have given negative feedback to your post, by type. (Total Count)",,"Lifetime: The number of people who have given negative feedback to your post, by type. (Unique Users)",
|
||||
1758443694484996_2733776493618373,https://www.facebook.com/ciefworldwide/posts/2733776493618373,"【海运费上调,我的产品要不要涨价?】
|
||||
|
||||
相信很多商家也在这几日频频看到新闻都在报道海运费暴涨的话题。这事情也不是突然的发生,早在11月头就已经出现涨价的迹象了。这其中的原因当然也包括了一些船务公司在疫情期间受创倒闭了,其他的船务公司呢为了缩减本身的成本,被迫暂停了航线,这也就导致了集装箱严重短缺,出现了“一柜难求”的状况。
|
||||
|
||||
这场疫情带来的灾害最终还是烧到了运输行业,相信各个海运公司在这段时间都感同身受。在这里呢想给商家们提一句,您们的商品价格是否需要调整还真的需要慎重考虑,毕竟报道里的专家也指出这股海运价钱浮动的情况可能会延续到2021年的农历新年后,短期内应该无法得到改善。
|
||||
|
||||
https://web.facebook.com/SinChewDaily/posts/4111544072237336
|
||||
|
||||
-----------------------------------------------------------------------------------
|
||||
📪注册加入📪
|
||||
http://bit.ly/2tpGoxB
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
#全马第一商业海运
|
||||
#进口的道路上
|
||||
#我们为你护航",Link,,,"11/24/2020 06:00:42 PM"," ",620,620,0,646,646,0,42,42,47,0,0,565,537,0,0,36,0,0,0,0,0,0,0,0,0,0,,,,,,,7,35,,,9,39,,,,,,
|
||||
1758443694484996_2731996107129745,https://www.facebook.com/ciefworldwide/posts/2731996107129745,"【周一语录】
|
||||
|
||||
早安!时间真的不等人,不知不觉已经来到11月尾声了,还有多一个月就要迎接2021的到来啦,所以想做的事情就快去做呀!我们一起加油!",Photo,,,"11/22/2020 06:00:47 PM"," ",185,185,0,190,190,0,2,2,2,0,0,136,132,0,0,1,0,0,0,0,0,0,0,0,0,0,,,,,,,1,,1,,1,,1,,,,,
|
||||
1758443694484996_2725537567775599,https://www.facebook.com/ciefworldwide/posts/2725537567775599,"【有没有什么方法能快速取得Invoice?】
|
||||
|
||||
以前是不是拿个Invoice都要三催四请,拖了一个月又一个月,令商家们也十分头疼...
|
||||
|
||||
但已经没关系了!
|
||||
我司目前升级了汇款系统!升级了!!
|
||||
对,您没看错!它升级了!
|
||||
这一次系统自动化直接出Invoice给您!让您快速又轻易得获取Invoice!
|
||||
*小声地告诉您哦,有可能您的货物还没到,Invoice已经在手了!这样有效率的服务,您不心动吗?马上来试看看吧!
|
||||
|
||||
若想了解更仔细的汇款教学,请点击 https://cutt.ly/Lg4GLwi
|
||||
|
||||
-----------------------------------------------------------------------------------
|
||||
📪注册加入📪
|
||||
http://bit.ly/2tpGoxB
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
#全马第一商业海运
|
||||
#进口的道路上
|
||||
#我们为你护航",Photo,,,"11/16/2020 05:00:01 PM"," ",751,645,108,1041,699,342,40,37,49,0,0,534,502,2,2,19,0,0,0,0,0,0,0,0,0,0,4,,,2,4,,21,8,14,,26,9,14,,,,,
|
||||
1758443694484996_2705040159825340,https://www.facebook.com/ciefworldwide/posts/2705040159825340,"【常见问题 - 联系真人客服】
|
||||
|
||||
若您给我们发消息,或者注册后迟迟等不到我们用微信联系您,别担心!我们的真人客服时间是工作日的早上9点到傍晚6点哦!我们会尽可能地在这段时间内给与您回复🙌🏻
|
||||
|
||||
若你们有问题想要了解,我们也强烈建议您们在这同样的时间段中联系我们的真人客服,以避免我们的工作人员错过了您的信息。
|
||||
|
||||
别慌,请耐心等待我们的回复!你们的问题我们来一一解决!
|
||||
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Photo,,,"10/27/2020 07:00:02 PM"," ",724,724,0,830,830,0,9,9,11,0,0,476,422,0,0,7,0,0,0,0,0,0,0,0,0,0,,,,,,,4,4,1,,4,6,1,,,,,
|
||||
1758443694484996_2703205586675464,https://www.facebook.com/ciefworldwide/posts/2703205586675464,"【周一语录】
|
||||
|
||||
早安呀!打起精神来,就算 work from home也能找到乐趣!不要再 Monday Blue啦!越努力就越幸运🤞 冲呀~~~
|
||||
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Photo,,,"10/25/2020 11:00:02 PM"," ",738,738,0,849,849,0,6,6,6,0,0,522,456,0,0,2,0,0,0,0,0,0,0,0,0,0,,,,,,,1,2,3,,1,2,3,,,,,
|
||||
1758443694484996_2698223320507024,https://www.facebook.com/ciefworldwide/posts/2698223320507024,"【常见问题 - 如何算立方和运费?】
|
||||
|
||||
小编这边分享一个简单易懂的例子:
|
||||
你买了10箱一样的货品,要从广州运到吉隆坡,箱子的大小就如同照片里的示范。
|
||||
1. 测量单位一律换成Meter (m),拿来相乘。
|
||||
2. 把算到的CBM乘于你一开始购买的10个箱子,再乘于从广州到吉隆坡的运费(RM390),你就知道你的运费是多少了。
|
||||
|
||||
货品最终的大小将由我司仓库测量为标准。这里要强调的是,发不同的仓库,送往马来西亚不同的地区会有不同的收费。详情请查阅:https://www.cief-malaysia.com/services-sea-shipping-cn/
|
||||
|
||||
若还是对运费方面的问题感到困扰,欢迎联络我们的真人客服!
|
||||
-----------------------------------------------------------------------------------
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
#全马第一商业海运
|
||||
#进口的道路上
|
||||
#我们为你护航",Photo,,,"10/20/2020 11:00:03 PM"," ",850,850,0,977,977,0,46,45,57,0,0,592,526,0,0,27,0,0,0,0,0,0,0,0,0,0,1,,,1,1,,8,9,33,,9,12,36,,,,,
|
||||
1758443694484996_2693277947668228,https://www.facebook.com/ciefworldwide/posts/2693277947668228,"【周一语录】
|
||||
|
||||
早上好!又是一个星期开始的第一天!
|
||||
你是否目前身在CMCO地区呢?不管是不是,面对目前日渐严峻的疫情形势,照顾好自己的同时也要保持一颗平常的心面对接下来的每一天!
|
||||
|
||||
-----------------------------------------------------------------------------------
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
#全马第一商业海运
|
||||
#进口的道路上
|
||||
#我们为你护航",Photo,,,"10/18/2020 07:00:01 PM"," ",581,581,0,693,693,0,6,5,5,0,0,356,300,0,0,5,0,0,0,0,0,0,0,0,0,0,1,,,1,1,,2,1,2,,2,1,2,,,,,
|
||||
1758443694484996_2664645677198122,https://www.facebook.com/ciefworldwide/posts/2664645677198122,"【别再傻傻的猛撞直冲随便的中国进口货物了!】
|
||||
|
||||
请问身为电商/批发商的你是否最近一直看见其他卖家进口一整柜进口货物📦呢?你是不是很想知道对方到底是去哪里进口这一些批发货物的呢💭。
|
||||
你是不是在想 ”怎么可以那么快,那么多,那么省钱的运输货物到这里“呢❓
|
||||
真的值得吗?真的合适吗?到底怎么办呀。。。。
|
||||
没事!我司提供个“方案”给你们,让你们一目了然❕❕❕
|
||||
|
||||
点击这个【不看白不看的方案】的文章,给你们收益良多呀😆~~~
|
||||
https://www.cief-malaysia.com/进口一整柜/
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Photo,,,"09/17/2020 07:00:04 PM"," ",1229,1229,0,1485,1485,0,58,57,65,0,0,828,711,0,0,36,0,0,0,0,0,0,0,0,0,0,3,1,,,3,1,18,37,4,,19,42,4,,,,,
|
||||
1758443694484996_2654897168172973,https://www.facebook.com/ciefworldwide/posts/2654897168172973,"【不理解进口一整柜是什么概念?不要再人家quote什么价钱你就给多少钱了!】🤷🏻♀️
|
||||
|
||||
觉得进口一整柜很贵?不值得?不要只是听别人说 我来告诉您 您已经大错特错啦!一整柜的价钱比其他的都还要值得呢!只要您愿意给我司一一为您算,quote最好的价钱给您!
|
||||
|
||||
小编更加相信点进来看的您有80%之前收到一堆你看不懂的文件费用,清关费等等。他们quote什么价钱您就给多少钱,但是我们不一样!不一样!不一样!很重要所以小编要强调三次🤣
|
||||
|
||||
我司不会让您付款数额超出预计的成本,我司提供超有耐心和100%细心的服务!我们将为你提供几项您真正想要关心的项目包括......
|
||||
|
||||
想要了解更多详情🔎 就别等了赶紧点击这里阅读文章 🤩
|
||||
👉https://www.cief-malaysia.com/进口一整柜/
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/
|
||||
|
||||
Attachments",Photo,,,"09/07/2020 07:00:04 PM"," ",2807,2807,0,3265,3265,0,195,187,255,1,1,2408,2110,0,0,162,0,0,0,0,0,0,0,0,0,0,11,10,,1,11,11,134,62,19,,163,73,19,,1,,1,
|
||||
1758443694484996_2646559882340035,https://www.facebook.com/ciefworldwide/posts/2646559882340035,"马来西亚独立63周年了🇲🇾
|
||||
CIEF在这里祝马来西亚国庆日快乐,也祝大家假期愉快!
|
||||
马来西亚🇲🇾关怀 Malaysia Prihatin
|
||||
Selamatharimerdeka
|
||||
Happyindependenceday",Photo,,,"08/30/2020 09:16:25 PM"," ",849,849,0,1071,1071,0,1,1,1,0,0,475,362,0,0,1,0,0,0,0,0,0,0,0,0,0,,,,,,,1,,,,1,,,,,,,
|
||||
1758443694484996_2643380639324626,https://www.facebook.com/ciefworldwide/posts/2643380639324626,"【如何从 1688 进货 _ 真实案例】
|
||||
|
||||
今天小編就來和大家一起分享如何用比淘寶更便宜划的平台那就是阿里集团下的1688。1688簡單來說就是大陸批發傢家&電子商的福利平台!
|
||||
|
||||
那我們開始吧!首先筆電用戶者只需要去“https://www.1688.com/ ”就可以進入1688網站,手機用戶則需下載1688手機APP才可以看得到1688的網站哦! 然後就是注冊賬號,有淘寶賬號的可以直接連接到1688省去這步驟!
|
||||
想要知道下几个步骤吗?😄😄😄请点击这里继续阅读文章
|
||||
👉 https://www.cief-malaysia.com/1688-real-case/
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/
|
||||
|
||||
Attachments",Photo,,,"08/27/2020 07:00:04 PM"," ",996,996,0,1201,1201,0,55,52,75,1,1,573,473,0,0,17,0,0,0,0,0,0,0,0,0,0,3,,1,2,3,,8,43,7,,9,59,7,,,1,,1
|
||||
1758443694484996_2641553062840717,https://www.facebook.com/ciefworldwide/posts/2641553062840717,"【新手分享小贴士:1688和淘宝的主要区别】
|
||||
|
||||
其实还是有些电商不是很了解1688的作用是什么。那么小编就分享给大家知道1688和淘宝的主要区别😊
|
||||
1688是个网络批发平台,身为卖家/批发家/电商 都可以使用1688 进口货物📦。除此之外,在1688进口货物的“成本价格”可以比淘宝便宜便宜好多倍哟😺 是不是很不错呢❓是不是很合适现在的你呢❓😄 那么事不宜迟,马上行动,出发!!!GO, GO, GO❕❕❕
|
||||
|
||||
了解更多更多的区别知识,快来点击👉https://www.cief-malaysia.com/1688-vs-taobao-3-diff/
|
||||
小编希望的是,能够帮助大家身选对批发采购平台,可以减低成本,来赚取更大的利益😊
|
||||
|
||||
—————————————————————————————————
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Photo,,,"08/26/2020 12:00:04 AM"," ",838,838,0,1046,1046,0,19,18,22,0,0,488,407,0,0,12,0,0,0,0,0,0,0,0,0,0,1,,,,1,,4,14,1,,4,17,1,,,,,
|
||||
1758443694484996_2639660253029998,https://www.facebook.com/ciefworldwide/posts/2639660253029998,"【新手小白小贴士:1688 进口货物📦】
|
||||
|
||||
👋你是不是想要批量进货但不知道那个网站是真还是假的❓
|
||||
👋你是不是担心被骗钱,又得不到货物,怕最终“物财两失”呀❓
|
||||
😭那么你应该选择哪个网站来采购货物呀❓
|
||||
|
||||
那么我司的服务是可以解决你所有的疑问和焦虑😊 小编偷偷的告诉你们吧,“1688”现在已经是很多卖家的首选了。 为什么呢? 那是因为 1688 是现在当红的网络批发城,卖家只需要用手机或手提电脑 “Click 一 Click” ,“按一按” 你就可以在家舒舒服服地等待货物到你家。
|
||||
所谓:手快有,手慢无😊
|
||||
|
||||
赶快点击注册账号👉 https://www.cief-malaysia.com/register-account-1688-real-case/
|
||||
如何开始1688进口货物赶快点击👉 https://www.cief-malaysia.com/1688-real-case/
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/",Photo,,,"08/24/2020 02:48:05 AM"," ",1029,1029,0,1239,1239,0,33,32,43,0,0,686,595,0,0,18,0,0,0,0,0,0,0,0,0,0,1,,,,1,,10,20,5,,15,23,5,,,,,
|
||||
1758443694484996_2635483496781007,https://www.facebook.com/ciefworldwide/posts/2635483496781007,"你们好呀👧 好久不见
|
||||
小编在这里向你们问好😄
|
||||
|
||||
小编在这里提醒大家⏰ 出外记得要遵守政府规矩 好好保护自己。切记要带口罩😷,保持社交距离以避免遭遇罚款,而被逼缴付不必要的罚款哟。
|
||||
在这里,顾客有任何关于运输流程或者付款问题
|
||||
👉请按此链接以联系我们 https://m.me/ciefworldwide?ref=w5030302
|
||||
请勇于的联系客服💁 以得到最完美的解决方案
|
||||
我司一向给予顾客最好的服务和交流,让顾客享受至尊无上的感觉。帮助你以最省心又可靠的运输货物方式,将你的货物送到给你。
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/",Photo,,,"08/20/2020 12:00:04 AM"," ",940,940,0,1131,1131,0,18,17,21,0,0,634,537,0,0,12,0,0,0,0,0,0,0,0,0,0,1,,,,1,,14,5,,,16,5,,,,,,
|
||||
1758443694484996_2620547734941250,https://www.facebook.com/ciefworldwide/posts/2620547734941250,"我们有个小秘密想跟您说。。。
|
||||
想知道的话,多多关注我们哦~~",Photo,,,"08/03/2020 05:09:06 AM"," ",1018,1018,0,1259,1259,0,16,15,22,1,1,631,529,0,0,12,0,0,0,0,0,0,0,0,0,0,2,,,,2,,9,,10,,12,,10,,,1,,1
|
||||
1758443694484996_2592644174398273,https://www.facebook.com/ciefworldwide/posts/2592644174398273,"【最简单了解海运散货的流程】
|
||||
|
||||
小编了解大家对“海运散货”都很感兴趣。 可是实在是不想看「太长太多」的页面😔 而且大家也好像对“海运散货”的教程还不是很了解😄
|
||||
|
||||
所以呢,小编又提供个最简洁最直接的方式帮助大家一目了然,直接可以马上了解海运散货的流程 😤
|
||||
|
||||
那么废话不多说! 直接上手吧!🚢🚢🚢
|
||||
|
||||
如果更想了解“海运散货”细节,可点击 👉 https://www.cief-malaysia.com/海运散货流程_如何成为我们的顾客/",Photo,,,"07/01/2020 07:00:02 PM"," ",1623,1623,0,2045,2045,0,149,145,167,0,0,1013,782,0,0,58,0,0,0,0,0,0,0,0,0,0,6,1,,1,6,1,9,25,126,,11,25,131,,,,,
|
||||
1758443694484996_2592394464423244,https://www.facebook.com/ciefworldwide/posts/2592394464423244,"【烦恼K1 Form快看这】
|
||||
|
||||
您是否烦恼着如何得到K1 Form,快来看这视频!!
|
||||
|
||||
【直接!快速!马上!解决你的“报帐”Invoice的问题】
|
||||
|
||||
你每次看见你的同行对手都从中国🇨🇳进货,看见他的货物📦都很新款又时尚。
|
||||
而你每次只有仰望他的份,想知道他是怎样从中国进货? 进口货是怎么报账Invoice的?
|
||||
你心中只能呐喊:‼️‼️谁可以帮帮我呀‼️‼️
|
||||
|
||||
来了!来了!我来了!🙀
|
||||
您的问题小编听见了‼️
|
||||
您的问题我们公司完完全全的复合您的需求,可以马上帮你解决问题✔️
|
||||
|
||||
还有!!!
|
||||
你也通过这篇文章快速明白了解“什么是Invoice“
|
||||
👋https://www.cief-malaysia.com/understandinvoicewithinthreeminutes/
|
||||
|
||||
或者直接“敲击”我们公司的客服去吧😊
|
||||
|
||||
简单的流程,让你快速上手解决你所有问题😄
|
||||
✔️请点击了解完整Exchange System流程✔️:http://bit.ly/38e0R7f
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/
|
||||
#全马第一商业海运
|
||||
#进口的道路上
|
||||
#我们为你护航",Video,,,"06/29/2020 06:57:33 PM"," ",1410,1410,0,1912,1912,0,68,67,91,0,0,866,658,0,0,24,114,126,0,0,377,480,0,0,7922,38040,1,,,,1,,10,29,,35,14,33,,44,,,,
|
||||
1758443694484996_2580518955610795,https://www.facebook.com/ciefworldwide/posts/2580518955610795,"【中国进口货,Invoice不成问题!】
|
||||
又是到了六月公司的报税季节,想必每位商家到了现在这个时期,都是在头疼着关于时常在中国采购货物,给予商业用途使用,可是却没有invoice 做账的问题。😨
|
||||
|
||||
小编可以理解你那百味的心情😢
|
||||
每当你和运输公司拿invoice时,他们只给你一个答复那就是 ”提供不了invoice给你“。
|
||||
然而,你的Auditor却一直催你拿K1 Form。
|
||||
而你却为Invoice报税的事情而懊恼无数!
|
||||
|
||||
小编了解每当这个时期真是欲哭无泪呀😭😭😭
|
||||
就在这个时候,我们公司可以给予你这个帮助和服务😺😺😺
|
||||
我们公司拥有提供这一方面的服务给你们,让你们打破这个障碍。不用再为Invoice 的事情左三问右三问了!!!!
|
||||
|
||||
重要的事情说三遍: Invoice ! Invoice ! Invoice !
|
||||
简单的流程,让你快速上手解决你所有问题😄
|
||||
✔️请请点击✔️:http://bit.ly/38e0R7f
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/
|
||||
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Photo,,,"06/15/2020 10:00:01 PM"," ",2363,2363,0,2907,2907,0,97,87,99,0,0,1469,1243,0,0,61,0,0,0,0,0,0,0,0,0,0,11,3,1,3,11,3,49,30,11,,53,33,13,,,,,
|
||||
1758443694484996_2575668049429219,https://www.facebook.com/ciefworldwide/posts/2575668049429219,"【运输贴士:选对的运输方式就是成功的第一步】
|
||||
|
||||
相信现在越来越多人对于电商帝国充满希望与未来,想要在这个电商帝国有一番事业!
|
||||
那么小编相信在你们开始自己电商业之前,都会有个疑问🤔️ 那就是“如何运输货物”!!!
|
||||
|
||||
在这里小编就和你们科普一些关于我们公司的运输方式😉
|
||||
以下是我们公司的几种运输方式那就是:
|
||||
☑️海运一整货柜装载(FCL)
|
||||
☑️海运散货物拼柜(LCL)
|
||||
|
||||
所以在选择运输方式之前一定要有对于运输方面的知识才好让自己省下不必要的费用哟!
|
||||
对于运输货物方面小编相信很多人应该都知道有两种形式就是“淘宝代运” 和 “商业海运”,但是“知道”和“了解”是有不同的意思哟!!!😊
|
||||
所以在选择之前先好好了解(淘宝代运)和(商业海运)的区别,因为这说不定会给你带来不一样的了解哟!!!
|
||||
|
||||
小编这就马上将这方面【商业海运】和【淘宝代运】的知识传授给你,请点击
|
||||
👉https://www.cief-malaysia.com/b2b-vs-taobao-shipping/ !
|
||||
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Photo,,,"06/12/2020 12:00:00 AM"," ",1218,1218,0,1599,1599,0,41,40,45,0,0,676,516,0,0,9,0,0,0,0,0,0,0,0,0,0,,1,,,,1,4,34,3,,4,38,3,,,,,
|
||||
1758443694484996_2575611576101533,https://www.facebook.com/ciefworldwide/posts/2575611576101533,"【六月公司报税季节到了,你准备好了吗?】
|
||||
|
||||
您在中国采购的时候,发现中国批发商并不能提供 invoice给您。造成了公司会计无法做帐和报税。这导致公司将会面临马来西亚税务局视的80%到300%的巨额罚款。小编在这里为您准备了解决方案就是使用代理该模式。
|
||||
|
||||
代理开单模式,简称“货代”意思是进口商会把货款交给货代,然后货代则会帮忙汇款给中国厂家,并且帮忙您处理货物的进口和开出 invoice 给进口商的您。使用代理开单模式,可使整个流程就变成了进口商在跟本地货代采购一样,合法和简单。想要了解更多详情,请点击:http://bit.ly/38e0R7f
|
||||
|
||||
📫最新物流知识 📫
|
||||
订阅C.I.E.F电子报: http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀 浏览我们的官网🚀
|
||||
https://www.ceif-malaysia.com/home-page-cn/
|
||||
|
||||
#全马第一商业海运
|
||||
|
||||
#进口的道路上
|
||||
|
||||
#我们为你护航",Photo,,,"06/10/2020 12:00:02 AM"," ",1813,1813,0,2212,2212,0,48,42,51,0,0,1263,1036,0,0,37,0,0,0,0,0,0,0,0,0,0,6,,1,2,6,,20,21,4,,22,25,4,,,,,
|
||||
1758443694484996_2570680403261317,https://www.facebook.com/ciefworldwide/posts/2570680403261317,"【进口术语:什么是一整柜❓❓】
|
||||
|
||||
身为进口商的你,有没有时常听到同行说要进口一整柜呢?🙋♂️同行们是不是也时常每每比较进口一整柜的成本,商量着开始进口整柜货物?而你却插不上话题呢?😭你是不是看到同行把“进口一整柜”打理得井井有条,也有点心动了呢?💘但是,却有一个很严重的问题,就是不知该从何下手!!😱
|
||||
|
||||
想知道什么是一整柜和进口一整柜的系统,而不知所措的你😵,不妨来看看小编为你准备的文章【从中国进口一整柜到马来西亚】,请点击
|
||||
👉https://www.cief-malaysia.com/full-container-load/
|
||||
|
||||
👍绝对能让你从A-Z明白什么是“进口一整柜”!不论是新手或老手绝对都能立马理解!🤩只要找到专属你的商业海运服务,整柜服务或散货服务问题都不在话下,让商业海运的我们为你提供一条龙服务!🤗
|
||||
------------------------------------------------------------------------------------------------
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Photo,,,"06/05/2020 12:00:00 AM"," ",40228,2338,38254,66220,2961,63259,2749,2738,3503,0,0,3690,1673,2732,1068,150,0,0,0,0,0,0,0,0,0,0,37,5,13,44,37,6,2549,547,223,,2678,600,225,,,,,
|
||||
1758443694484996_2568900973439260,https://www.facebook.com/ciefworldwide/posts/2568900973439260,"【👉运输贴士:你选对方式进军E世界了吗?】
|
||||
|
||||
进军E世界的方法有太多太多种了!有商业海运,空运,集运,陆运,淘宝代运等等!想进口不是问题!可是有没有选对运输方式真的是太重要了!选错了就会赔进不少成本哦!😄
|
||||
|
||||
🤩想建立自己的电商帝国,一定要做好万全的知识准备!你知不知道【商业海运】和【淘宝代运】的差别吗?这两种是不同的运输方式哦!选对了将会带给你自己至关重要的好处哦!😱
|
||||
|
||||
这里将免费分享【商业海运】和【淘宝代运】的差别,请点击
|
||||
👉https://www.cief-malaysia.com/b2b-vs-taobao-shipping/ !
|
||||
|
||||
❌❌绝对绝对不要选错运输方式啊!
|
||||
-----------------------------------------------------------------------------------------------
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Link,,,"06/02/2020 07:00:11 PM"," ",1273,1273,0,1575,1575,0,19,19,28,0,0,669,542,0,0,10,0,0,0,0,0,0,0,0,0,0,,,,,,,2,19,,,2,26,,,,,,
|
||||
1758443694484996_2565729510423073,https://www.facebook.com/ciefworldwide/posts/2565729510423073,"【进口老手现在必知:怎样一次过从中国进口大批货❓❗️】
|
||||
|
||||
疫情的蔓延经过了6个月到现在还没落下个句点,可是你是不是已经找到自己的新起点了呢?😉
|
||||
👉你是不是对从中国进口的步骤已经熟悉得不能再熟悉了呢?
|
||||
👉你是不是已经成为进口老手了呢?
|
||||
👉你有没有打算再寻找一个新的生意高峰点呢?
|
||||
👉你知不知道你其实可以从中国一次过进口一大批货物?
|
||||
👉从中国进口一整柜,你知道多少?
|
||||
👉你是不是在担心一整柜的运输问题,出口退税,清关问题等等?
|
||||
|
||||
🙋♂️在这里,小编为大家准备了一篇简单易懂的进口知识,那就是【从中国进口一整柜】!🤩🤩这里面内容肯定可以帮助大家解决进口一整柜的疑惑,而且还提供了进口时的必知细节!👍
|
||||
|
||||
想知道内容,可点击👉 https://www.cief-malaysia.com/full-container-load/
|
||||
--------------------------------------------------------------------------------------------------
|
||||
📪最新物流知识📪
|
||||
订阅C.I.E.F电子报:http://bit.ly/2O0g7zv
|
||||
|
||||
👉请按此链接以联系我们:
|
||||
https://m.me/ciefworldwide?ref=w5030302
|
||||
|
||||
🚀浏览我们的官网:
|
||||
https://www.cief-malaysia.com/home-page-cn/
|
||||
|
||||
全马第一商业海运
|
||||
进口的道路上
|
||||
我们为你护航",Link,,,"05/31/2020 07:00:49 PM"," ",108222,1723,107129,190111,2037,188074,4578,4434,5688,0,0,5129,2017,4219,1514,153,0,0,0,0,0,0,0,0,0,0,124,44,112,124,129,46,3455,1695,,,3845,1843,,,,,,
|
||||
|
+34
File diff suppressed because one or more lines are too long
+180
File diff suppressed because one or more lines are too long
Binary file not shown.
+1067
-725
File diff suppressed because it is too large
Load Diff
+925
-787
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,10 @@
|
||||
from app import *
|
||||
from apps import upload_data, summery, apriori, monthly, home, covid_19, machine_learning, update_data, data
|
||||
from apps import upload_data, summery, apriori, monthly, home, covid_19, machine_learning, update_data, data, conversion_rate
|
||||
|
||||
navbar = dbc.NavbarSimple([
|
||||
dbc.NavItem(dbc.NavLink("Summery data", href="/summery")),
|
||||
dbc.NavItem(dbc.NavLink("Monthly data", href="/monthly")),
|
||||
dbc.NavItem(dbc.NavLink("Conversion rate", href="/conversion_rate")),
|
||||
dbc.NavItem(dbc.NavLink("Covid-19", href="/covid_19")),
|
||||
dbc.DropdownMenu([
|
||||
dbc.NavLink("Market Basket", href="/apriori"),
|
||||
@@ -19,10 +20,10 @@ app.layout = html.Div([
|
||||
update_data.layout,
|
||||
dcc.Location(id='input-url'),
|
||||
navbar,
|
||||
html.Div(id='output-page-content'),
|
||||
html.Div(id='output-page_content'),
|
||||
])
|
||||
|
||||
@app.callback(Output('output-page-content', 'children'),
|
||||
@app.callback(Output('output-page_content', 'children'),
|
||||
[Input('input-url', 'pathname')])
|
||||
def display_page(pathname):
|
||||
if pathname == '/summery':
|
||||
@@ -33,6 +34,8 @@ def display_page(pathname):
|
||||
return apriori.layout
|
||||
elif pathname == '/monthly':
|
||||
return monthly.layout
|
||||
elif pathname == '/conversion_rate':
|
||||
return conversion_rate.layout
|
||||
elif pathname == '/covid_19':
|
||||
return covid_19.layout
|
||||
elif pathname == '/machine_learning':
|
||||
@@ -41,4 +44,4 @@ def display_page(pathname):
|
||||
return home.layout
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run_server(host='::',port='8055',debug=True)
|
||||
-app.run_server(host='::',port='8055',debug=True)
|
||||
|
||||
Reference in New Issue
Block a user