import InvoiceControllerState from '../InvoiceControllerState'; /** * 更新 发票单据编号 */ export default async (state: InvoiceControllerState) => { return `INV${(Math.random() * 10000000000000).toFixed(0)}`; };