ionic-vhframeworks 3.5.9 → 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 +40 -0
- package/package.json +1 -1
|
@@ -7217,6 +7217,30 @@ export declare class VhQuerySales {
|
|
|
7217
7217
|
* @returns Bool => true or false
|
|
7218
7218
|
*/
|
|
7219
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>;
|
|
7220
7244
|
/**
|
|
7221
7245
|
* @example:
|
|
7222
7246
|
* let productlistlazada = this.vhQuerySales.getlocalProductListLazada('ư0e4tuiwe98rhvqw9vtqw9t7rq987r9qvwn98et98');
|
|
@@ -7510,6 +7534,21 @@ export declare class VhQuerySales {
|
|
|
7510
7534
|
* @returns
|
|
7511
7535
|
*/
|
|
7512
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>;
|
|
7513
7552
|
/**
|
|
7514
7553
|
* @example:
|
|
7515
7554
|
* let order_date_from = new Date('2021-01-1');
|
|
@@ -7812,6 +7851,7 @@ export declare class VhQuerySales {
|
|
|
7812
7851
|
* @returns Promise bool = true or false
|
|
7813
7852
|
*/
|
|
7814
7853
|
syncCollections_Desktop(): Promise<unknown>;
|
|
7854
|
+
private fixBill;
|
|
7815
7855
|
private initSyncCollections;
|
|
7816
7856
|
/**
|
|
7817
7857
|
* @example:
|