ionic-vhframeworks 10.10.9 → 10.11.1
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.
|
@@ -1891,6 +1891,20 @@ export declare class VhAuth {
|
|
|
1891
1891
|
* @return Promise => bool = true or false
|
|
1892
1892
|
*/
|
|
1893
1893
|
deleteEmployee(id_employee: string): Promise<unknown>;
|
|
1894
|
+
/**
|
|
1895
|
+
* @example:
|
|
1896
|
+
* this.vhAuth.changeEmployeeEmail_byShop('5fb67fda87c0f21d484cbdf3', 'ngoclan@gmail.com)
|
|
1897
|
+
.then((rsp:any)=>{
|
|
1898
|
+
console.log('changeEmployeeEmail_byShop', rsp);
|
|
1899
|
+
})
|
|
1900
|
+
* @param id_employee
|
|
1901
|
+
* @param newEmail
|
|
1902
|
+
* @return Promise => {vcode, msg}
|
|
1903
|
+
* vcode : 0 => Đổi email thành công
|
|
1904
|
+
* vcode : 1 => Email muốn đổi sang đã có người sử dụng
|
|
1905
|
+
* vcode : 2 => Email cũ và Email mới giống nhau
|
|
1906
|
+
*/
|
|
1907
|
+
changeEmployeeEmail_byShop(id_employee: string, newEmail: string): Promise<unknown>;
|
|
1894
1908
|
/**
|
|
1895
1909
|
* @example
|
|
1896
1910
|
* this.vhAuth.getEmployee('5fb67fda87c0f21d484cbdf3')
|
|
@@ -7596,8 +7610,6 @@ export declare class VhQueryCafe {
|
|
|
7596
7610
|
* @notice : ở giao diện APP, chọn IDbranch rồi mới hiện ra những IDwallet của chi nhánh đó để chọn tiếp. Nếu IDbranch = 'all' thì IDwallet phải là 'all'
|
|
7597
7611
|
*/
|
|
7598
7612
|
getReportCashBook(starttime: any, endtime: any, IDwallet: any, IDbranch?: any): Promise<unknown>;
|
|
7599
|
-
private getReportCashBook_oldnew;
|
|
7600
|
-
private getReportCashBook_old;
|
|
7601
7613
|
/**
|
|
7602
7614
|
* vhQueryCafe
|
|
7603
7615
|
* Hàm này chỉ chạy trên giao diện Desktop
|
|
@@ -19519,21 +19531,6 @@ export declare class VhQuerySales {
|
|
|
19519
19531
|
* @notice : ở giao diện APP, chọn IDbranch rồi mới hiện ra những IDwallet của chi nhánh đó để chọn tiếp. Nếu IDbranch = 'all' thì IDwallet phải là 'all'
|
|
19520
19532
|
*/
|
|
19521
19533
|
getReportCashBook(starttime: any, endtime: any, IDwallet: any, IDbranch?: any): Promise<unknown>;
|
|
19522
|
-
/**
|
|
19523
|
-
* VhQuerySales:
|
|
19524
|
-
* @param starttime
|
|
19525
|
-
* @param endtime
|
|
19526
|
-
* @param IDwallet
|
|
19527
|
-
* @param IDbranch
|
|
19528
|
-
* @returns
|
|
19529
|
-
*/
|
|
19530
|
-
private getReportCashBook_old;
|
|
19531
|
-
/**
|
|
19532
|
-
* VhQuerySales:
|
|
19533
|
-
* @param id_branch
|
|
19534
|
-
* @returns
|
|
19535
|
-
*/
|
|
19536
|
-
private syncCashBook;
|
|
19537
19534
|
/**
|
|
19538
19535
|
* VhQuerySales:
|
|
19539
19536
|
* Hàm này chỉ chạy trên giao diện Desktop
|