사이트·관리자 봉투 물류 기능(수불·통계·레포트·재고·발주)과 DB·메뉴·E2E를 운영 반영한다.

통계 분석(전년대비·월별·계절별), 수급계획·LOT 수불, 지정판매소·실사·메뉴 링크 등을 포함한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
taekyoungc
2026-06-01 16:15:15 +09:00
parent 21e7b91871
commit 0f1d414f37
129 changed files with 18068 additions and 1585 deletions

View File

@@ -22,6 +22,14 @@ test.describe('P3: 발주 관리', () => {
await expect(page.locator('input[name="bo_order_date"]')).toBeVisible();
});
test('발주 변경 허브', async ({ page }) => {
await loginAsAdmin(page);
await page.goto('/bag/order/change');
await expect(page).toHaveURL(/\/bag\/order\/change/);
await expect(page.locator('select[name="month"]')).toBeVisible();
await expect(page.locator('legend:has-text("변경 구분")')).toBeVisible();
});
test('기간 필터 조회', async ({ page }) => {
await loginAsAdmin(page);
await page.goto('/bag/bag-orders?start_date=2026-01-01&end_date=2026-12-31');