dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
22 lines (21 loc) • 722 B
TypeScript
import { CoreAppService } from './app-service-app';
import { DmsApplicationService } from './application-context-service';
export type DocumentSerie = {
documentType: number;
current: number;
max: number;
mask: string;
};
export declare class DocumentSeriesService extends CoreAppService {
private series;
constructor(dms: DmsApplicationService);
private composeFullSerieNo;
private initializeSerie;
private load;
private save;
private findSerie;
getCurrentNumber(documentType: number): Promise<string>;
getNextNumber(documentType: number): Promise<string>;
incrementNumber(documentType: number): Promise<string>;
synchronize(userName: string): Promise<void>;
}