Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 182adca282 | |||
| 025f3b7bbc | |||
| c1febfffec | |||
| b42a70ff3b |
+21
-23
@@ -1,37 +1,35 @@
|
||||
name: DB Backup
|
||||
|
||||
on:
|
||||
# 定时备份已暂停(保留手动触发)。恢复时取消下面 schedule 的注释即可。
|
||||
# schedule:
|
||||
# - cron: '0 18 * * *' # UTC 18:00 = 北京时间 02:00
|
||||
# 每日定时备份(北京时间 02:00)。手动触发亦可。
|
||||
schedule:
|
||||
- cron: '0 18 * * *' # UTC 18:00 = 北京时间 02:00
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: db-backup
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
backup:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: mac
|
||||
steps:
|
||||
- name: Setup SSH
|
||||
run: |
|
||||
mkdir -p ~/.ssh
|
||||
printf '%s' "${{ secrets.EC2_SSH_KEY }}" > ~/.ssh/ec2.pem
|
||||
chmod 600 ~/.ssh/ec2.pem
|
||||
ssh-keyscan -H ${{ secrets.EC2_HOST }} >> ~/.ssh/known_hosts
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Dump MySQL to NAS
|
||||
- name: Dump MySQL to local backup dir
|
||||
env:
|
||||
EC2_SSH_KEY: ${{ secrets.EC2_SSH_KEY }}
|
||||
EC2_HOST: ${{ secrets.EC2_HOST }}
|
||||
EC2_USER: ${{ secrets.EC2_USER }}
|
||||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
|
||||
run: |
|
||||
BACKUP_DIR=/volume1/docker/backups/jiu-db
|
||||
mkdir -p $BACKUP_DIR
|
||||
FILENAME="jiu_db_$(date +%Y%m%d_%H%M%S).sql.gz"
|
||||
ssh -i ~/.ssh/ec2.pem ${EC2_USER}@${EC2_HOST} \
|
||||
"docker exec jiu_mysql mysqldump -uroot -p${DB_PASSWORD} jiu_db" \
|
||||
| gzip > ${BACKUP_DIR}/${FILENAME}
|
||||
find $BACKUP_DIR -name "*.sql.gz" -mtime +30 -delete
|
||||
echo "Saved: ${BACKUP_DIR}/${FILENAME}"
|
||||
run: sh scripts/ci/backup-db.sh
|
||||
|
||||
- name: Cleanup SSH key
|
||||
- name: Notify (Telegram)
|
||||
if: always()
|
||||
run: rm -f ~/.ssh/ec2.pem
|
||||
env:
|
||||
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }}
|
||||
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
|
||||
run: |
|
||||
if [ "${{ job.status }}" = "success" ]; then ICON="✅"; LABEL="数据库备份成功"; else ICON="❌"; LABEL="数据库备份失败"; fi
|
||||
curl -f -X POST "https://api.telegram.org/bot${TELEGRAM_TOKEN}/sendMessage" \
|
||||
-d "chat_id=${TELEGRAM_CHAT_ID}" \
|
||||
--data-urlencode "text=${ICON} 岩美 ${LABEL}" > /dev/null || true
|
||||
|
||||
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.66] - 2026-06-21
|
||||
|
||||
### 改进
|
||||
- 入库/出库列表「日期」列改名为「入库时间/出库时间」,移除恒为空的旧「审核时间」列
|
||||
- 日期选择改为可直接键入的输入框 + 日历图标:能直接打年份(选老年份方便),支持只填到年或年月(自动补为月初)
|
||||
|
||||
## [1.0.65] - 2026-06-21
|
||||
|
||||
### 改进
|
||||
- 入库录入改为「每行一个独立产品」:每条明细对应一个独立编号,同名同规格录多次也各自独立(配合后端 server-v1.0.69)
|
||||
|
||||
## [1.0.64] - 2026-06-20
|
||||
|
||||
### 新功能
|
||||
|
||||
@@ -5,6 +5,11 @@
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.69] - 2026-06-21
|
||||
|
||||
### 改进
|
||||
- 入库录入改为「每行一个独立产品」:每条明细新建独立商品、发独立序列号(同名同规格录多次也各自独立),不再复用已有商品编号,符合"每个货品一个唯一编号"的管理方式
|
||||
|
||||
## [1.0.68] - 2026-06-21
|
||||
|
||||
### 修复
|
||||
|
||||
@@ -85,6 +85,42 @@ func nextProductCode(tx *gorm.DB, shopID uint64) (string, error) {
|
||||
return fmt.Sprintf("P%03d", maxN+1), nil
|
||||
}
|
||||
|
||||
// createIndependentProduct 为入库明细新建一个独立产品(特有产品/序列号),返回新 product。
|
||||
// "入库每行 = 一个特有产品"模型:每条明细建一个独立 product、发新序列号,不按名称复用。
|
||||
// 含 nextProductCode 自增 + 撞 uk_shop_code 唯一约束时重试。必须在事务内调用。
|
||||
func createIndependentProduct(tx *gorm.DB, shopID uint64, name, series, spec, batchNo string, prodDate *model.Date, price float64) (model.Product, error) {
|
||||
namePinyin, nameInitials := util.ToPinyin(name)
|
||||
var prod model.Product
|
||||
var err error
|
||||
for attempt := 0; attempt < 5; attempt++ {
|
||||
code, e := nextProductCode(tx, shopID)
|
||||
if e != nil {
|
||||
return model.Product{}, e
|
||||
}
|
||||
prod = model.Product{
|
||||
TenantBase: model.TenantBase{ShopID: shopID},
|
||||
PublicID: uuid.New().String(),
|
||||
Code: code,
|
||||
Name: name,
|
||||
Series: series,
|
||||
Spec: spec,
|
||||
BatchNo: batchNo,
|
||||
ProductionDate: prodDate,
|
||||
PurchasePrice: price,
|
||||
NamePinyin: namePinyin,
|
||||
NameInitials: nameInitials,
|
||||
}
|
||||
prod.ID = 0
|
||||
if err = tx.Create(&prod).Error; err == nil || !errors.Is(err, gorm.ErrDuplicatedKey) {
|
||||
break
|
||||
}
|
||||
}
|
||||
if err != nil {
|
||||
return model.Product{}, err
|
||||
}
|
||||
return prod, nil
|
||||
}
|
||||
|
||||
// Create POST /api/v1/products
|
||||
func (h *ProductHandler) Create(c *gin.Context) {
|
||||
shopID := middleware.GetShopID(c)
|
||||
|
||||
@@ -106,19 +106,28 @@ func (h *StockInHandler) Create(c *gin.Context) {
|
||||
}
|
||||
req.OrderNo = orderNo
|
||||
|
||||
// 计算总金额;自动生成批次号
|
||||
var total float64
|
||||
for i := range req.Items {
|
||||
req.Items[i].ShopID = shopID
|
||||
req.Items[i].TotalPrice = req.Items[i].Quantity * req.Items[i].UnitPrice
|
||||
total += req.Items[i].TotalPrice
|
||||
if req.Items[i].BatchNo == "" {
|
||||
req.Items[i].BatchNo = fmt.Sprintf("%s-%02d", req.OrderNo, i+1)
|
||||
// 事务内:每条明细新建一个独立产品(特有产品/序列号,不按名称复用),回填 product_id,再建单。
|
||||
err = h.db.Transaction(func(tx *gorm.DB) error {
|
||||
var total float64
|
||||
for i := range req.Items {
|
||||
it := &req.Items[i]
|
||||
it.ShopID = shopID
|
||||
if it.BatchNo == "" {
|
||||
it.BatchNo = fmt.Sprintf("%s-%02d", req.OrderNo, i+1)
|
||||
}
|
||||
prod, e := createIndependentProduct(tx, shopID, it.ProductName, it.Series, it.Spec, it.BatchNo, it.ProductionDate, it.UnitPrice)
|
||||
if e != nil {
|
||||
return e
|
||||
}
|
||||
it.ProductID = prod.ID
|
||||
it.ProductCode = prod.Code // 保留快照,兼容现有查询(瘦身阶段再去)
|
||||
it.TotalPrice = it.Quantity * it.UnitPrice
|
||||
total += it.TotalPrice
|
||||
}
|
||||
}
|
||||
req.TotalAmount = total
|
||||
|
||||
if err := h.db.Create(&req).Error; err != nil {
|
||||
req.TotalAmount = total
|
||||
return tx.Create(&req).Error
|
||||
})
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
||||
return
|
||||
}
|
||||
@@ -148,13 +157,20 @@ func (h *StockInHandler) Update(c *gin.Context) {
|
||||
}
|
||||
var total float64
|
||||
for i := range req.Items {
|
||||
req.Items[i].ShopID = shopID
|
||||
req.Items[i].OrderID = order.ID
|
||||
req.Items[i].TotalPrice = req.Items[i].Quantity * req.Items[i].UnitPrice
|
||||
total += req.Items[i].TotalPrice
|
||||
if req.Items[i].BatchNo == "" {
|
||||
req.Items[i].BatchNo = fmt.Sprintf("%s-%02d", order.OrderNo, i+1)
|
||||
it := &req.Items[i]
|
||||
it.ShopID = shopID
|
||||
it.OrderID = order.ID
|
||||
if it.BatchNo == "" {
|
||||
it.BatchNo = fmt.Sprintf("%s-%02d", order.OrderNo, i+1)
|
||||
}
|
||||
// 编辑草稿:旧明细已删,每条按新模型重建独立产品(旧草稿 product 无库存,暂留待后续清理)
|
||||
prod, e := createIndependentProduct(tx, shopID, it.ProductName, it.Series, it.Spec, it.BatchNo, it.ProductionDate, it.UnitPrice)
|
||||
if e != nil {
|
||||
return e
|
||||
}
|
||||
it.ProductID = prod.ID
|
||||
it.ProductCode = prod.Code
|
||||
it.TotalPrice = it.Quantity * it.UnitPrice
|
||||
}
|
||||
updates := map[string]interface{}{
|
||||
"warehouse_id": req.WarehouseID,
|
||||
|
||||
@@ -28,9 +28,11 @@ func TestStockInHandler_FullFlow(t *testing.T) {
|
||||
"order_date": time.Now().Format(time.RFC3339),
|
||||
"items": []map[string]interface{}{
|
||||
{
|
||||
"product_id": product.ID,
|
||||
"quantity": 10.0,
|
||||
"unit_price": 5.0,
|
||||
"product_name": "Test Beer",
|
||||
"series": "普通",
|
||||
"spec": "500ml",
|
||||
"quantity": 10.0,
|
||||
"unit_price": 5.0,
|
||||
},
|
||||
},
|
||||
})
|
||||
@@ -57,15 +59,17 @@ func TestStockInHandler_FullFlow(t *testing.T) {
|
||||
w = makeRequest(r, "PUT", fmt.Sprintf("/api/v1/stock-in/orders/%d/approve", orderID), token, nil)
|
||||
require.Equal(t, http.StatusOK, w.Code)
|
||||
|
||||
// 5. 验证库存变化
|
||||
// 5. 验证库存变化:入库为明细新建了独立产品,库存指向它(不是预设的 product)
|
||||
var inv model.Inventory
|
||||
db.Where("shop_id = ? AND warehouse_id = ? AND product_id = ?",
|
||||
shop.ID, warehouse.ID, product.ID).First(&inv)
|
||||
db.Where("shop_id = ? AND warehouse_id = ?",
|
||||
shop.ID, warehouse.ID).First(&inv)
|
||||
assert.Equal(t, float64(10), inv.Quantity)
|
||||
assert.NotZero(t, inv.ProductID)
|
||||
assert.NotEqual(t, product.ID, inv.ProductID)
|
||||
|
||||
// 6. 验证库存流水
|
||||
var logs []model.InventoryLog
|
||||
db.Where("shop_id = ? AND product_id = ?", shop.ID, product.ID).Find(&logs)
|
||||
db.Where("shop_id = ? AND product_id = ?", shop.ID, inv.ProductID).Find(&logs)
|
||||
require.Len(t, logs, 1)
|
||||
assert.Equal(t, "in", logs[0].Direction)
|
||||
assert.Equal(t, float64(10), logs[0].Quantity)
|
||||
|
||||
@@ -22,6 +22,9 @@ type Product struct {
|
||||
Brand string `gorm:"size:100" json:"brand"`
|
||||
PurchasePrice float64 `gorm:"type:decimal(12,2)" json:"purchase_price"`
|
||||
SalePrice float64 `gorm:"type:decimal(12,2)" json:"sale_price"`
|
||||
// 特有产品的批次属性:每个 product = 一个特有产品/序列号,生产日期/批次归此(单一来源)
|
||||
ProductionDate *Date `gorm:"type:date" json:"production_date"`
|
||||
BatchNo string `gorm:"size:50" json:"batch_no"`
|
||||
MinStock int `gorm:"default:0" json:"min_stock"`
|
||||
Description string `gorm:"type:text" json:"description"`
|
||||
CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"`
|
||||
|
||||
@@ -188,6 +188,8 @@ func SetupTestDB() *gorm.DB {
|
||||
brand TEXT,
|
||||
purchase_price REAL,
|
||||
sale_price REAL,
|
||||
production_date DATETIME,
|
||||
batch_no TEXT,
|
||||
min_stock INTEGER DEFAULT 0,
|
||||
description TEXT,
|
||||
custom_fields TEXT,
|
||||
|
||||
@@ -11,7 +11,6 @@ import '../../models/stock_in.dart';
|
||||
import '../../core/config/app_constants.dart';
|
||||
import '../../providers/partner_provider.dart';
|
||||
import '../../providers/product_option_provider.dart';
|
||||
import '../../providers/product_provider.dart';
|
||||
import '../../providers/inventory_provider.dart';
|
||||
import '../../providers/stock_in_provider.dart';
|
||||
import '../../providers/warehouse_provider.dart';
|
||||
@@ -306,58 +305,22 @@ class _StockInFormScreenState extends ConsumerState<StockInFormScreen> {
|
||||
|
||||
setState(() => _submitting = true);
|
||||
|
||||
// Resolve product IDs for items where productId is null
|
||||
// 入库每行 = 一个特有产品:明细只带 名称/系列/规格(字典文本) + 批次/生产日期,
|
||||
// 由后端为每行新建独立产品(序列号),前端不再 findOrCreate 复用。
|
||||
final nameOpts = ref.read(productNameListProvider).valueOrNull ?? [];
|
||||
final seriesOpts = ref.read(productSeriesListProvider).valueOrNull ?? [];
|
||||
final specOpts = ref.read(productSpecListProvider).valueOrNull ?? [];
|
||||
String optName(List<dynamic> opts, int? id) =>
|
||||
opts.where((o) => o.id == id).firstOrNull?.name as String? ?? '';
|
||||
|
||||
for (final item in _items) {
|
||||
if (item.productId == null) {
|
||||
final name = nameOpts
|
||||
.where((o) => o.id == item.selectedNameId)
|
||||
.firstOrNull
|
||||
?.name ??
|
||||
'';
|
||||
final series = seriesOpts
|
||||
.where((o) => o.id == item.selectedSeriesId)
|
||||
.firstOrNull
|
||||
?.name ??
|
||||
'';
|
||||
final spec = specOpts
|
||||
.where((o) => o.id == item.selectedSpecId)
|
||||
.firstOrNull
|
||||
?.name ??
|
||||
'';
|
||||
if (name.isEmpty) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(
|
||||
content: Text('请选择商品名称'), backgroundColor: AppTheme.danger),
|
||||
);
|
||||
setState(() => _submitting = false);
|
||||
return;
|
||||
}
|
||||
try {
|
||||
final product =
|
||||
await ref.read(productRepositoryProvider).findOrCreate(
|
||||
name: name,
|
||||
series: series,
|
||||
spec: spec,
|
||||
originId: item.selectedOriginId,
|
||||
shelfLifeId: item.selectedShelfLifeId,
|
||||
storageId: item.selectedStorageId,
|
||||
descriptionDocId: item.selectedDescriptionDocId,
|
||||
);
|
||||
item.productId = product.id;
|
||||
} catch (e) {
|
||||
if (mounted) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(
|
||||
content: Text('商品查找失败:$e'), backgroundColor: AppTheme.danger),
|
||||
);
|
||||
setState(() => _submitting = false);
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (optName(nameOpts, item.selectedNameId).isEmpty) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(
|
||||
content: Text('请选择商品名称'), backgroundColor: AppTheme.danger),
|
||||
);
|
||||
setState(() => _submitting = false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -367,7 +330,9 @@ class _StockInFormScreenState extends ConsumerState<StockInFormScreen> {
|
||||
final batchNo = item.batchNoCtrl.text.trim();
|
||||
final productionDate = item.productionDateCtrl.text.trim();
|
||||
return {
|
||||
'product_id': item.productId ?? 0,
|
||||
'product_name': optName(nameOpts, item.selectedNameId),
|
||||
'series': optName(seriesOpts, item.selectedSeriesId),
|
||||
'spec': optName(specOpts, item.selectedSpecId),
|
||||
'quantity': qty,
|
||||
'unit_price': price,
|
||||
'total_price': qty * price,
|
||||
|
||||
@@ -49,8 +49,7 @@ class _StockInListScreenState extends ConsumerState<StockInListScreen> {
|
||||
ColDef('warehouse', '仓库'),
|
||||
ColDef('amount', '金额', minWidth: 800),
|
||||
ColDef('status', '状态'),
|
||||
ColDef('date', '日期', minWidth: 900),
|
||||
ColDef('reviewed_at', '入库时间', minWidth: 900),
|
||||
ColDef('date', '入库时间', minWidth: 900),
|
||||
ColDef('operator', '入库员', minWidth: 1100),
|
||||
ColDef('reviewer', '审核员', minWidth: 1100),
|
||||
ColDef('actions', '操作', required: true),
|
||||
@@ -270,12 +269,6 @@ class _StockInListScreenState extends ConsumerState<StockInListScreen> {
|
||||
return DataCell(StatusBadge(_apiStatusToEnum(o.status)));
|
||||
case 'date':
|
||||
return DataCell(Text(o.orderDate?.substring(0, 10) ?? '-'));
|
||||
case 'reviewed_at':
|
||||
return DataCell(Text(o.reviewedAt != null
|
||||
? o.reviewedAt!.length >= 16
|
||||
? o.reviewedAt!.substring(0, 16)
|
||||
: o.reviewedAt!.substring(0, 10)
|
||||
: '-'));
|
||||
case 'operator':
|
||||
return DataCell(Text(o.operatorName ?? '-',
|
||||
style: const TextStyle(fontSize: 13)));
|
||||
@@ -550,7 +543,7 @@ class _StockInListScreenState extends ConsumerState<StockInListScreen> {
|
||||
o.totalAmount != null
|
||||
? '¥${o.totalAmount!.toStringAsFixed(2)}'
|
||||
: '-'),
|
||||
MobileCardField('日期', o.orderDate?.substring(0, 10) ?? '-'),
|
||||
MobileCardField('入库时间', o.orderDate?.substring(0, 10) ?? '-'),
|
||||
],
|
||||
actions: _orderActions(context, o),
|
||||
);
|
||||
|
||||
@@ -64,8 +64,7 @@ class _StockOutListScreenState extends ConsumerState<StockOutListScreen> {
|
||||
ColDef('warehouse', '仓库'),
|
||||
ColDef('amount', '金额', minWidth: 800),
|
||||
ColDef('status', '状态'),
|
||||
ColDef('date', '日期', minWidth: 900),
|
||||
ColDef('reviewed_at', '出库时间', minWidth: 900),
|
||||
ColDef('date', '出库时间', minWidth: 900),
|
||||
ColDef('created_at', '创建时间', minWidth: 900),
|
||||
ColDef('operator', '出库员', minWidth: 1100),
|
||||
ColDef('reviewer', '审核员', minWidth: 1100),
|
||||
@@ -271,12 +270,6 @@ class _StockOutListScreenState extends ConsumerState<StockOutListScreen> {
|
||||
return DataCell(StatusBadge(_apiStatusToEnum(o.status)));
|
||||
case 'date':
|
||||
return DataCell(Text(o.orderDate?.substring(0, 10) ?? '-'));
|
||||
case 'reviewed_at':
|
||||
return DataCell(Text(o.reviewedAt != null
|
||||
? o.reviewedAt!.length >= 16
|
||||
? o.reviewedAt!.substring(0, 16)
|
||||
: o.reviewedAt!.substring(0, 10)
|
||||
: '-'));
|
||||
case 'created_at':
|
||||
return DataCell(Text(o.createdAt != null
|
||||
? o.createdAt!.length >= 16
|
||||
@@ -524,7 +517,7 @@ class _StockOutListScreenState extends ConsumerState<StockOutListScreen> {
|
||||
o.totalAmount != null
|
||||
? '¥${o.totalAmount!.toStringAsFixed(2)}'
|
||||
: '-'),
|
||||
MobileCardField('日期', o.orderDate?.substring(0, 10) ?? '-'),
|
||||
MobileCardField('出库时间', o.orderDate?.substring(0, 10) ?? '-'),
|
||||
],
|
||||
actions: _orderActions(context, o),
|
||||
);
|
||||
|
||||
@@ -2,12 +2,12 @@ import 'package:flutter/material.dart';
|
||||
import '../core/theme/app_theme.dart';
|
||||
import '../core/utils/date_util.dart';
|
||||
|
||||
/// 年/月/日 三个可编辑下拉框的日期选择组件,替代原生 showDatePicker。
|
||||
/// 可键入日期框 + 日历图标(替代旧的「年/月/日」三下拉)。
|
||||
///
|
||||
/// - 每个下拉是 Material 3 `DropdownMenu`:点开可选,键入数字即过滤定位
|
||||
/// (年/月/日均为有界域,条目覆盖全范围,等价于「手动输入数字」)。
|
||||
/// - 改月/年时把超出当月的「日」自动 clamp 回当月最大值。
|
||||
/// - 值以 `yyyy-MM-dd` 字符串进出([value] / [onChanged]);三者未填齐时回调 null。
|
||||
/// - **直接键入**:支持「2024」「2024-5」「2024-5-12」「20240512」等,归一为 `yyyy-MM-dd`,
|
||||
/// 缺的月/日补 `01`(老酒只知道年份,填 2024 即 2024-01-01)。失焦时把显示归一化。
|
||||
/// - **日历图标**:弹 Material `showDatePicker`(input 模式可直接键入年份,选老年份方便)。
|
||||
/// - 值以 `yyyy-MM-dd` 字符串进出([value] / [onChanged]);无有效年时回调 null。
|
||||
class DatePickerField extends StatefulWidget {
|
||||
final String? value; // yyyy-MM-dd
|
||||
final ValueChanged<String?> onChanged;
|
||||
@@ -27,151 +27,130 @@ class DatePickerField extends StatefulWidget {
|
||||
}
|
||||
|
||||
class _DatePickerFieldState extends State<DatePickerField> {
|
||||
int? _year;
|
||||
int? _month;
|
||||
int? _day;
|
||||
late final TextEditingController _ctrl;
|
||||
final FocusNode _focus = FocusNode();
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_parse(widget.value);
|
||||
_ctrl = TextEditingController(text: widget.value ?? '');
|
||||
_focus.addListener(() {
|
||||
// 失焦时把输入归一化显示(如 2024 → 2024-01-01)
|
||||
if (!_focus.hasFocus) {
|
||||
final n = _normalize(_ctrl.text);
|
||||
if (n != null && n != _ctrl.text) {
|
||||
_ctrl.text = n;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
void didUpdateWidget(DatePickerField old) {
|
||||
super.didUpdateWidget(old);
|
||||
if (old.value != widget.value) {
|
||||
_parse(widget.value);
|
||||
// 仅在无焦点(非用户正在输入)时同步外部值,避免回流打断输入
|
||||
if (!_focus.hasFocus &&
|
||||
old.value != widget.value &&
|
||||
(widget.value ?? '') != _ctrl.text) {
|
||||
_ctrl.text = widget.value ?? '';
|
||||
}
|
||||
}
|
||||
|
||||
void _parse(String? v) {
|
||||
final d = parseYmd(v);
|
||||
_year = d?.year;
|
||||
_month = d?.month;
|
||||
_day = d?.day;
|
||||
@override
|
||||
void dispose() {
|
||||
_ctrl.dispose();
|
||||
_focus.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
int get _daysInMonth {
|
||||
final y = _year ?? DateTime.now().year;
|
||||
final m = _month ?? 1;
|
||||
return DateTime(y, m + 1, 0).day; // 下月第 0 天 = 当月最后一天
|
||||
}
|
||||
|
||||
String? get _composed => composeYmd(_year, _month, _day);
|
||||
|
||||
void _emit(FormFieldState<String> field) {
|
||||
// 改月/年后把超界的日 clamp 回当月最大值(与 composeYmd 一致,State 同步显示)
|
||||
if (_day != null && _day! > _daysInMonth) {
|
||||
_day = _daysInMonth;
|
||||
/// 归一用户输入为 `yyyy-MM-dd`(缺月/日补 01);无有效年返回 null。
|
||||
static String? _normalize(String raw) {
|
||||
final s = raw.trim();
|
||||
if (s.isEmpty) return null;
|
||||
int? y, mo, d;
|
||||
if (RegExp(r'^[0-9]+$').hasMatch(s)) {
|
||||
// 纯数字串:yyyymmdd / yyyymm / yyyy
|
||||
if (s.length >= 8) {
|
||||
y = int.tryParse(s.substring(0, 4));
|
||||
mo = int.tryParse(s.substring(4, 6));
|
||||
d = int.tryParse(s.substring(6, 8));
|
||||
} else if (s.length == 6) {
|
||||
y = int.tryParse(s.substring(0, 4));
|
||||
mo = int.tryParse(s.substring(4, 6));
|
||||
} else {
|
||||
y = int.tryParse(s);
|
||||
}
|
||||
} else {
|
||||
final parts =
|
||||
s.split(RegExp(r'[^0-9]+')).where((e) => e.isNotEmpty).toList();
|
||||
if (parts.isNotEmpty) y = int.tryParse(parts[0]);
|
||||
if (parts.length >= 2) mo = int.tryParse(parts[1]);
|
||||
if (parts.length >= 3) d = int.tryParse(parts[2]);
|
||||
}
|
||||
if (y == null || y < 1900 || y > 2200) return null;
|
||||
mo ??= 1;
|
||||
d ??= 1;
|
||||
if (mo < 1 || mo > 12) return null;
|
||||
final maxDay = DateTime(y, mo + 1, 0).day;
|
||||
if (d < 1) d = 1;
|
||||
if (d > maxDay) d = maxDay;
|
||||
return '${y.toString().padLeft(4, '0')}-'
|
||||
'${mo.toString().padLeft(2, '0')}-'
|
||||
'${d.toString().padLeft(2, '0')}';
|
||||
}
|
||||
|
||||
Future<void> _pickFromCalendar(FormFieldState<String> field) async {
|
||||
final init =
|
||||
parseYmd(_normalize(_ctrl.text) ?? widget.value) ?? DateTime.now();
|
||||
final picked = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: init,
|
||||
firstDate: DateTime(1900),
|
||||
lastDate: DateTime(2200),
|
||||
initialEntryMode: DatePickerEntryMode.input,
|
||||
);
|
||||
if (picked != null) {
|
||||
final v = formatYmd(picked);
|
||||
_ctrl.text = v;
|
||||
field.didChange(v);
|
||||
widget.onChanged(v);
|
||||
}
|
||||
final v = _composed;
|
||||
field.didChange(v);
|
||||
widget.onChanged(v);
|
||||
setState(() {});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final now = DateTime.now();
|
||||
final years = [for (var y = now.year - 20; y <= now.year + 5; y++) y];
|
||||
final months = [for (var m = 1; m <= 12; m++) m];
|
||||
final days = [for (var d = 1; d <= _daysInMonth; d++) d];
|
||||
|
||||
// 每个下拉用 Expanded 撑满分得的宽度(expandedInsets:zero 让 DropdownMenu 填满父级),
|
||||
// trailingIcon 用紧凑小箭头,避免默认大图标按钮挤掉数字(曾导致「2026」被裁成「007」)。
|
||||
Widget menu({
|
||||
required String label,
|
||||
required int? value,
|
||||
required List<int> items,
|
||||
required ValueChanged<int?> onSel,
|
||||
required FormFieldState<String> field,
|
||||
}) {
|
||||
return DropdownMenu<int>(
|
||||
initialSelection: value,
|
||||
label: Text(label, style: const TextStyle(fontSize: 11)),
|
||||
enableFilter: true,
|
||||
requestFocusOnTap: true,
|
||||
textStyle: const TextStyle(fontSize: 13),
|
||||
menuHeight: 280,
|
||||
expandedInsets: EdgeInsets.zero,
|
||||
trailingIcon: const Icon(Icons.arrow_drop_down, size: 18),
|
||||
selectedTrailingIcon: const Icon(Icons.arrow_drop_up, size: 18),
|
||||
inputDecorationTheme: const InputDecorationTheme(
|
||||
isDense: true,
|
||||
contentPadding: EdgeInsets.symmetric(horizontal: 6, vertical: 8),
|
||||
),
|
||||
dropdownMenuEntries: [
|
||||
for (final i in items) DropdownMenuEntry<int>(value: i, label: '$i'),
|
||||
],
|
||||
onSelected: onSel,
|
||||
);
|
||||
}
|
||||
|
||||
return FormField<String>(
|
||||
initialValue: widget.value,
|
||||
validator: widget.isRequired
|
||||
? (v) => (_composed == null ? '请选择日期' : null)
|
||||
? (_) => _normalize(_ctrl.text) == null ? '请输入日期' : null
|
||||
: null,
|
||||
builder: (field) {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
flex: 5,
|
||||
child: menu(
|
||||
label: '年',
|
||||
value: _year,
|
||||
items: years,
|
||||
field: field,
|
||||
onSel: (v) {
|
||||
_year = v;
|
||||
_emit(field);
|
||||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 6),
|
||||
Expanded(
|
||||
flex: 4,
|
||||
child: menu(
|
||||
label: '月',
|
||||
value: _month,
|
||||
items: months,
|
||||
field: field,
|
||||
onSel: (v) {
|
||||
_month = v;
|
||||
_emit(field);
|
||||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 6),
|
||||
Expanded(
|
||||
flex: 4,
|
||||
child: menu(
|
||||
label: '日',
|
||||
value: _day,
|
||||
items: days,
|
||||
field: field,
|
||||
onSel: (v) {
|
||||
_day = v;
|
||||
_emit(field);
|
||||
},
|
||||
),
|
||||
),
|
||||
],
|
||||
return TextField(
|
||||
controller: _ctrl,
|
||||
focusNode: _focus,
|
||||
keyboardType: TextInputType.datetime,
|
||||
style: const TextStyle(fontSize: 13),
|
||||
decoration: InputDecoration(
|
||||
isDense: true,
|
||||
hintText: '年-月-日',
|
||||
hintStyle: const TextStyle(fontSize: 12),
|
||||
contentPadding:
|
||||
const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
||||
errorText: field.errorText,
|
||||
suffixIcon: IconButton(
|
||||
icon: const Icon(Icons.calendar_today,
|
||||
size: 16, color: AppTheme.textSecondary),
|
||||
padding: EdgeInsets.zero,
|
||||
constraints: const BoxConstraints(minWidth: 34, minHeight: 34),
|
||||
tooltip: '选择日期',
|
||||
onPressed: () => _pickFromCalendar(field),
|
||||
),
|
||||
if (field.errorText != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(left: 12, top: 4),
|
||||
child: Text(
|
||||
field.errorText!,
|
||||
style: const TextStyle(fontSize: 11, color: AppTheme.danger),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
onChanged: (v) {
|
||||
final n = _normalize(v);
|
||||
field.didChange(n);
|
||||
widget.onChanged(n);
|
||||
},
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
@@ -31,26 +31,47 @@ void main() {
|
||||
});
|
||||
|
||||
group('DatePickerField', () {
|
||||
testWidgets('渲染三个年/月/日下拉框', (tester) async {
|
||||
testWidgets('渲染可键入框 + 日历图标', (tester) async {
|
||||
await tester.pumpWidget(MaterialApp(
|
||||
home: Scaffold(
|
||||
body: DatePickerField(value: '2026-06-19', onChanged: (_) {}),
|
||||
),
|
||||
));
|
||||
await tester.pumpAndSettle();
|
||||
expect(find.byType(DropdownMenu<int>), findsNWidgets(3));
|
||||
expect(find.byType(TextField), findsOneWidget);
|
||||
expect(find.byIcon(Icons.calendar_today), findsOneWidget);
|
||||
});
|
||||
|
||||
testWidgets('初始值回显到三个下拉框', (tester) async {
|
||||
testWidgets('初始值回显到输入框', (tester) async {
|
||||
await tester.pumpWidget(MaterialApp(
|
||||
home: Scaffold(
|
||||
body: DatePickerField(value: '2026-06-19', onChanged: (_) {}),
|
||||
),
|
||||
));
|
||||
await tester.pumpAndSettle();
|
||||
expect(find.widgetWithText(DropdownMenu<int>, '2026'), findsOneWidget);
|
||||
expect(find.widgetWithText(DropdownMenu<int>, '6'), findsOneWidget);
|
||||
expect(find.widgetWithText(DropdownMenu<int>, '19'), findsOneWidget);
|
||||
expect(find.text('2026-06-19'), findsOneWidget);
|
||||
});
|
||||
|
||||
testWidgets('只输年份归一为 yyyy-01-01', (tester) async {
|
||||
String? out;
|
||||
await tester.pumpWidget(MaterialApp(
|
||||
home: Scaffold(
|
||||
body: DatePickerField(onChanged: (v) => out = v),
|
||||
),
|
||||
));
|
||||
await tester.enterText(find.byType(TextField), '2024');
|
||||
expect(out, '2024-01-01');
|
||||
});
|
||||
|
||||
testWidgets('年月归一为 yyyy-MM-01', (tester) async {
|
||||
String? out;
|
||||
await tester.pumpWidget(MaterialApp(
|
||||
home: Scaffold(
|
||||
body: DatePickerField(onChanged: (v) => out = v),
|
||||
),
|
||||
));
|
||||
await tester.enterText(find.byType(TextField), '2024-5');
|
||||
expect(out, '2024-05-01');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
#!/usr/bin/env bash
|
||||
# backup-db.sh — dump the production MySQL (jiu_db) from EC2 and keep a gzip
|
||||
# snapshot on the mac (host) runner's local disk (~/jiu-db-backups), retaining
|
||||
# the last 30 days. The DB password is read on EC2 from production.env's
|
||||
# DATABASE_DSN, so no DB-password secret is needed.
|
||||
#
|
||||
# Requires env (same as deploy-server): EC2_SSH_KEY, EC2_HOST, EC2_USER.
|
||||
set -euo pipefail
|
||||
|
||||
# shellcheck source=scripts/ci/lib-forgejo.sh
|
||||
. "$(dirname "$0")/lib-forgejo.sh"
|
||||
|
||||
BACKUP_DIR="${HOME}/jiu-db-backups"
|
||||
mkdir -p "${BACKUP_DIR}"
|
||||
FILENAME="jiu_db_$(date +%Y%m%d_%H%M%S).sql.gz"
|
||||
DEST="${BACKUP_DIR}/${FILENAME}"
|
||||
|
||||
setup_ssh
|
||||
trap teardown_ssh EXIT
|
||||
|
||||
echo "==> backup-db: dumping jiu_db from ${EC2_HOST}"
|
||||
# On EC2: parse the DSN password from production.env, then mysqldump the
|
||||
# container to stdout; stream back over ssh and gzip locally. The heredoc is
|
||||
# single-quoted, so it runs verbatim on EC2 (no local expansion). ${SSH} carries
|
||||
# no -t, keeping stdout a clean dump stream.
|
||||
${SSH} "${EC2_USER}@${EC2_HOST}" 'bash -s' <<'ENDSSH' | gzip > "${DEST}"
|
||||
set -euo pipefail
|
||||
PW=$(python3 -c 'import re;e=open("/opt/jiu/config/production.env").read();d=re.search(r"DATABASE_DSN=(.*)",e).group(1).strip().strip(chr(34)).strip(chr(39));print(re.match(r"[^:]+:([^@]+)@",d).group(1))')
|
||||
exec docker exec -e MYSQL_PWD="${PW}" jiu_mysql mysqldump -uroot --single-transaction --no-tablespaces jiu_db
|
||||
ENDSSH
|
||||
|
||||
# Integrity + sanity + retention.
|
||||
gzip -t "${DEST}"
|
||||
SIZE=$(stat -f%z "${DEST}" 2>/dev/null || stat -c%s "${DEST}")
|
||||
if [ "${SIZE}" -lt 100000 ]; then
|
||||
echo "==> backup-db: dump suspiciously small (${SIZE} bytes), aborting" >&2
|
||||
rm -f "${DEST}"
|
||||
exit 1
|
||||
fi
|
||||
find "${BACKUP_DIR}" -name '*.sql.gz' -mtime +30 -delete
|
||||
echo "==> backup-db: saved ${DEST} (${SIZE} bytes)"
|
||||
Reference in New Issue
Block a user