ionic-vhframeworks 3.5.5 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ionic-vhframeworks.umd.js +1 -1
- package/bundles/ionic-vhframeworks.umd.js.map +1 -1
- package/bundles/ionic-vhframeworks.umd.min.js +1 -1
- package/bundles/ionic-vhframeworks.umd.min.js.map +1 -1
- package/fesm2015/ionic-vhframeworks.js.map +1 -1
- package/ionic-vhframeworks.metadata.json +1 -1
- package/lib/ionic-vhframeworks.service.d.ts +43 -0
- package/package.json +1 -1
|
@@ -3360,6 +3360,7 @@ export declare class VhQueryCafe {
|
|
|
3360
3360
|
*/
|
|
3361
3361
|
getObservableLocalAppSettingNameBranchs(): Observable<unknown>;
|
|
3362
3362
|
/**
|
|
3363
|
+
* Hàm này dùng lấy về tất cả phân quyền ở cấp độ chi nhánh
|
|
3363
3364
|
*@example:
|
|
3364
3365
|
this.vhQueryCafe.getLocalAppSettingNameBranchs()
|
|
3365
3366
|
.then((list)=>{
|
|
@@ -3369,6 +3370,7 @@ export declare class VhQueryCafe {
|
|
|
3369
3370
|
*/
|
|
3370
3371
|
getLocalAppSettingNameBranchs(): any[];
|
|
3371
3372
|
/**
|
|
3373
|
+
* Hàm này dùng lấy về phân quyền ở cấp độ chi nhánh
|
|
3372
3374
|
* @example:
|
|
3373
3375
|
let appsetting = this.vhQueryCafe.getLocalAppSettingNameBranch('info_header_footer_bill');
|
|
3374
3376
|
console.log(appsetting);
|
|
@@ -3384,6 +3386,7 @@ export declare class VhQueryCafe {
|
|
|
3384
3386
|
*/
|
|
3385
3387
|
private getLocalAppSettingBranch;
|
|
3386
3388
|
/**
|
|
3389
|
+
* Hàm này dùng cập nhật phân quyền ở cấp độ chi nhánh
|
|
3387
3390
|
* @example:
|
|
3388
3391
|
this.vhQueryCafe.updateAppSettingNameBranch('info_header_footer_bill',{title:'title',name:'name'})
|
|
3389
3392
|
.then((bool)=>{
|
|
@@ -7214,6 +7217,30 @@ export declare class VhQuerySales {
|
|
|
7214
7217
|
* @returns Bool => true or false
|
|
7215
7218
|
*/
|
|
7216
7219
|
updateProductByXMLLazada(xml: any, access_token: string): Promise<unknown>;
|
|
7220
|
+
/**
|
|
7221
|
+
* @example:
|
|
7222
|
+
* this.vhQuerySales.setStatusPackedLazada( order_item_ids, access_token).then((result)=>{
|
|
7223
|
+
console.log('result', result);
|
|
7224
|
+
},error=>{
|
|
7225
|
+
console.log('error', error);
|
|
7226
|
+
})
|
|
7227
|
+
* @param order_item_ids : array
|
|
7228
|
+
* @param access_token :string
|
|
7229
|
+
* @returns Promise
|
|
7230
|
+
*/
|
|
7231
|
+
setStatusPackedLazada(order_item_ids: any, access_token: string): Promise<unknown>;
|
|
7232
|
+
/**
|
|
7233
|
+
* @example:
|
|
7234
|
+
* this.vhQuerySales.setStatusReadyToShipLazada( order_item_ids, access_token).then((result)=>{
|
|
7235
|
+
console.log('result', result);
|
|
7236
|
+
},error=>{
|
|
7237
|
+
console.log('error', error);
|
|
7238
|
+
})
|
|
7239
|
+
* @param order_item_ids : array
|
|
7240
|
+
* @param access_token :string
|
|
7241
|
+
* @returns Promise
|
|
7242
|
+
*/
|
|
7243
|
+
setStatusReadyToShipLazada(order_item_ids: any, tracking_number: string, access_token: string): Promise<unknown>;
|
|
7217
7244
|
/**
|
|
7218
7245
|
* @example:
|
|
7219
7246
|
* let productlistlazada = this.vhQuerySales.getlocalProductListLazada('ư0e4tuiwe98rhvqw9vtqw9t7rq987r9qvwn98et98');
|
|
@@ -7507,6 +7534,21 @@ export declare class VhQuerySales {
|
|
|
7507
7534
|
* @returns
|
|
7508
7535
|
*/
|
|
7509
7536
|
updateByJSONSendo(json: any, token: string): Promise<unknown>;
|
|
7537
|
+
/**
|
|
7538
|
+
* @example:
|
|
7539
|
+
* this.vhQuerySales.updateOrderStatusSendo(order_number, order_status, cancel_order_reason, token)
|
|
7540
|
+
.then((bool)=>{
|
|
7541
|
+
console.log(bool);
|
|
7542
|
+
}, error=>{
|
|
7543
|
+
console.log(error);
|
|
7544
|
+
})
|
|
7545
|
+
* @param order_number
|
|
7546
|
+
* @param order_status
|
|
7547
|
+
* @param cancel_order_reason
|
|
7548
|
+
* @param token
|
|
7549
|
+
* @returns Promise => bool = true or false
|
|
7550
|
+
*/
|
|
7551
|
+
updateOrderStatusSendo(order_number: string, order_status: number, cancel_order_reason: string, token: string): Promise<unknown>;
|
|
7510
7552
|
/**
|
|
7511
7553
|
* @example:
|
|
7512
7554
|
* let order_date_from = new Date('2021-01-1');
|
|
@@ -7809,6 +7851,7 @@ export declare class VhQuerySales {
|
|
|
7809
7851
|
* @returns Promise bool = true or false
|
|
7810
7852
|
*/
|
|
7811
7853
|
syncCollections_Desktop(): Promise<unknown>;
|
|
7854
|
+
private fixBill;
|
|
7812
7855
|
private initSyncCollections;
|
|
7813
7856
|
/**
|
|
7814
7857
|
* @example:
|