ionic-vhframeworks 4.3.3 → 4.3.4
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 +11 -1
- package/package.json +1 -1
|
@@ -10813,6 +10813,16 @@ export declare class VhQuerySales {
|
|
|
10813
10813
|
* @return Promise => bool = true or false
|
|
10814
10814
|
*/
|
|
10815
10815
|
updatePrintPage(id_print_page: string, data: object): Promise<unknown>;
|
|
10816
|
+
/**
|
|
10817
|
+
* @example:
|
|
10818
|
+
* this.vhQuerySales.deletePrintPage('5fb67fda87c0f21d484cbdf3')
|
|
10819
|
+
.then((bool)=>{
|
|
10820
|
+
console.log('deletePrintPage', bool);
|
|
10821
|
+
})
|
|
10822
|
+
* @param id_print_page
|
|
10823
|
+
* @return Promise => bool = true or false
|
|
10824
|
+
*/
|
|
10825
|
+
deletePrintPage(id_print_page: string): Promise<unknown>;
|
|
10816
10826
|
/**
|
|
10817
10827
|
* @example
|
|
10818
10828
|
* this.vhQuerySales.getPrintPages()
|
|
@@ -10821,7 +10831,7 @@ export declare class VhQuerySales {
|
|
|
10821
10831
|
})
|
|
10822
10832
|
* @return array(object) = [{},{},..]
|
|
10823
10833
|
*/
|
|
10824
|
-
|
|
10834
|
+
getPrintPages(): Promise<unknown>;
|
|
10825
10835
|
/**
|
|
10826
10836
|
* Hàm này dùng để thực hiện trừ hàng hóa trong nhiều Payment_Card
|
|
10827
10837
|
* Hàm chạy ổn định anh sẽ thêm phần trừ số lượng hàng hóa đã sử dụng trong payment_card_code
|