add: ofm-档案管理增加审批

This commit is contained in:
zty 2025-09-12 15:01:11 +08:00
parent 643c45882f
commit 8ef9852e27
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Generated by Django 3.2.12 on 2025-09-12 07:00
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('wf', '0002_alter_state_filter_dept'),
('ofm', '0008_remove_borrowrecord_borrow_user'),
]
operations = [
migrations.AddField(
model_name='borrowrecord',
name='ticket',
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='borrow_ticket', to='wf.ticket', verbose_name='关联工单'),
),
]

View File

@ -101,6 +101,8 @@ class BorrowRecord(CommonBDModel):
return_date = models.DateField('归还日期', null=True, blank=True) return_date = models.DateField('归还日期', null=True, blank=True)
contacts = models.CharField('借阅人电话', max_length=50, validators=[phone_validator], null=True, blank=True) contacts = models.CharField('借阅人电话', max_length=50, validators=[phone_validator], null=True, blank=True)
remark = models.JSONField('用途', default=list, help_text=['借阅', '复印', '查阅']) remark = models.JSONField('用途', default=list, help_text=['借阅', '复印', '查阅'])
ticket = models.ForeignKey('wf.ticket', verbose_name='关联工单',
on_delete=models.SET_NULL, related_name='borrow_ticket', null=True, blank=True, db_constraint=False)
# class Publicity(CommonBDModel): # class Publicity(CommonBDModel):